美文网首页
css-比较难记的属性

css-比较难记的属性

作者: vzii | 来源:发表于2018-07-29 19:26 被阅读0次

    text-decoration: none;//去a标签的下滑线

    color: inherit;//颜色继承

    outline:none;//去除轮廓线

    text-decoration:line-through;//文字加中划线,也可直接用del标签

    vertical-align:middle//图片与文字对齐

    多行文字显示单行...

    overflow: hidden;

    white-space: nowrap;//不换行

    text-overflow: ellipsis;//文字超出,变...

    *清除浮动*/

    .clearfix:after {

            content: ".";

            height: 0;

            line-height: 0;

            visibility: hidden;

            display: block;

            clear: both;

    }

    相关文章

      网友评论

          本文标题:css-比较难记的属性

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