0

可能重复:
使用 CSS,使用“...”表示溢出的多行块

有没有办法在css中截断段落的行?例如,我有 7 行段落,我希望它们截断为 3 行。我试过这个:p {溢出:隐藏;文本溢出:省略号;空白:nowrap;宽度:100%;} 但它会形成 1 行被截断

4

1 回答 1

0

使用 css 代码作为

p{
height: 50px; //depends up on whatever you want
width: 100%
// add your css code
}
于 2012-10-17T08:22:32.400 回答