美文网首页
CSS常见样式

CSS常见样式

作者: datagirl | 来源:发表于2017-09-18 21:56 被阅读0次

    1.块级元素和行内元素分别有哪些?并列出4条以上的特性区别
    块级占据一整行,行内只占据的空间是它自身,多个行内元素可以占据一整行
    块级可以设置宽高,行内元素设置宽高无效
    块级元素可以放置块级元素和行内元素,行内元素只能包含行内元素和文本
    块级元素可以设置margin,padding;行内元素设置margin,padding宽高无效,左右有效

    2.什么是 CSS 继承? 哪些属性能继承,哪些不能?

    css继承是如果在父元素设置了属性,会自动的继承给子元素,这就是css继承。
    能继承的元素:letter-spacing、word-spacing、white-space、line-height、color、font、font-family、font-size、font-style、font-variant、font-weight、text-decoration、text-transform、direction、list-style、list-style-type、list-style-position、list-style-image、text-indent和text-align

    不能继承:display、margin、border、padding、background、height、min-height、max-height、width、min-width、max-width、overflow、position、left、right、top、bottom、z-index、float、clear、table-layout、vertical-align、page-break-after、page-bread-before和unicode-bidi。

    3.如何让块级元素水平居中?如何让行内元素水平居中?
    块元素设置margin :0 auto 可以居中
    行内元素设置text-align:center可以居中

    4.用 CSS 实现一个三角形
    设置一个div,宽高为0
    border top left right bottom为固定的宽度,比如都是20px,就会出现四个三角,根据需要,在上右下左设置transparent,得到想要的三角。

    5.单行文本溢出加 ...如何实现?
    加入以下内容:
    Whet-space: nowrap;
    Overflow: hidden;
    Text-overflow: ellipsis;

    6.px, em, rem 有什么区别
    px是固定单位
    em是相对单位,相对于父元素字体的大小
    rem是相对单位,相对于根元素字体的大小

    7.解释下面代码的作用?
    body{
    font: 12px/1.5 tahoma,arial,'Hiragino Sans GB','\5b8b\4f53',sans-serif;
    }
    为什么要加引号? 字体里\5b8b\4f53代表什么?

    字体大小是12px,字体行高是12px的1.5倍,加引号是因为有空格,加引号意味着它们是一个元素,不然不加会认为是两个或者多个元素,字体\5b8b\4f53,是unicode码,表示字体为宋体

    相关文章

      网友评论

          本文标题:CSS常见样式

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