一拗引、css超出隱藏
1. 一行文本超出隱藏
????width:200px;
????overflow:hidden; //超出的文本隱藏
????text-overflow:ellipsis; //溢出用省略號(hào)顯示
????white-space:nowrap; //溢出不換行
2. 兩行文本超出隱藏(最后一行的數(shù)字代表需要幾行文本超出隱藏)
????width:200px;
????overflow:hidden;?
????text-overflow:ellipsis;
????display:-webkit-box;?
????-webkit-box-orient:vertical;
????-webkit-line-clamp:2;?
備注:這些都需要設(shè)置div的寬度熊锭,否則沒(méi)有辦法進(jìn)行超出文本隱藏設(shè)置。