我有一个名为note的div,里面有textWrapper和noteText。我需要文本下降一行时达到限制(宽度),但由于某种原因,它只是削减句子,没有下降行和没有滚动的意图。附加代码:
有什么想法吗?
.note {
display: block;
position: relative;
margin: 0 auto;
width: 250px;
height: 300px;
background-image: url("media/notebg.png");
background-size: cover;
animation: fadeIn 1s;
}
/*Styles for text in the note*/
.note > .noteText {
position: absolute;
top: 40px;
left: 10px;
width: 200px;
white-space: pre-wrap;
word-wrap: break-word;
}
.note > .textWrap {
position: absolute;
top: 50px;
left: 10px;
width: 200px;
max-height: 250px;
overflow-x: hidden;
overflow-y: auto;
text-align: center;
}
1条答案
按热度按时间wljmcqd81#
您可以使用overflow-wrap自动断开文本。