作者:含糊hagle | 来源:互联网 | 2022-12-19 22:41
我想打破"div2"里面的长词,div2和div3的宽度都不能大于父宽度(即150px).唯一有效的是,word-break: break-all
但这也会打破短语.
#div1{
display: flex;
max-width: 150px;
height: 100px;;
}
#div2{
background-color: gray;
}
#div3{
background-color: rgb(197, 181, 181);
}
#div4{
width: 150px;
background-color: rgb(144, 199, 172);
}
aaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbb
oooo
150 px - max width
1> Gerardo BLAN..:
您可以使用break-word
仅在单词中打破
#div1 {
display: flex;
max-width: 150px;
height: 100px;
;
}
#div2 {
background-color: gray;
word-break: break-word;
}
#div3 {
background-color: rgb(197, 181, 181);
}
#div4 {
width: 150px;
background-color: rgb(144, 199, 172);
}
aaaaaaaaaa bbbbbbbbbbbbbbbbbbbbbbbbbb
oooo
150 px - max width