>无论如何,要使文本超出边界是不可见的吗?>是否可以将其分成多行,或者甚至更好 – 在每条虚线的末尾用多条线打破多行?
问候,Rafid
Is there anyway to make text going beyond the boundary invisible?
是的:overflow
overflow
#yourDivId { overflow: hidden; }
Is it possible to break it into multiple lines
是的:word-wrap
word-wrap
#yourDivId { word-wrap: break-word; }