CSS的技巧写法

1.当文字多时占一行

        overflow: hidden;
        text-overflow:ellipsis;
        white-space:nowrap;

2.float的一种写法

.clearfix:before,.clearfix:after{
   content: " ";
   display: table;
}
.clearfix:after{
   clear: both;
}

猜你喜欢

转载自blog.csdn.net/qq_38588845/article/details/80249895