美文网首页
css清除浮动和文本溢出

css清除浮动和文本溢出

作者: 猿分让我们相遇 | 来源:发表于2017-07-25 23:21 被阅读0次

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

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

<a href="javascript:void(0)">跳转</a>这样可以阻止
------------------------------------------------------------------------


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

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

相关文章

网友评论

      本文标题:css清除浮动和文本溢出

      本文链接:https://www.haomeiwen.com/subject/ndvjkxtx.html