css清除浮动和文本溢出

文本溢出 。。。啥的css样式

//公共属性,设置width就行了
.overflow{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}```

跳转这样可以阻止
------------------------------------------------------------------------


清除浮动
---------------------------------------------------------

.clearfix:after {
content: " ";
display: block;
clear: both;
height: 0;
}
.clearfix {
zoom: 1;
}```

你可能感兴趣的:(css清除浮动和文本溢出)