CSS语法

作者: Medicine_8d60 | 来源:发表于2019-12-15 14:20 被阅读0次

    设置带透明度的背景颜色

    background:rgba(255, 255, 255, 0.4);

    background: #ff0000 url(/i/eg_bg_03.gif) no-repeat center / cover;

    设置居中背景 cover属性100% 自适应

    background: #ff0000 url(/i/eg_bg_03.gif) no-repeat fixed center;

    设置固定居中背景

    background-image: url("../images/a_17.jpg");

    background-position: center center;
    
    height: 600px;
    

    :nth-child(n) 选择器匹配属于其父元素的第 N 个子元素,不论元素的类型。

    n 可以是数字、关键词或公式。

    .jf_ykjb li:nth-child(2)

    设置阴影 box-shadow: 下阴影 右阴影 模糊度(值越高越模糊) 颜色;

    box-shadow: 上阴影 左阴影 模糊度 颜色;

    box-shadow: 10px 10px 5px #888888;

    用css3实现box-shadow好的实例网站?

    http://studentwebhosting.com/media/demos/css-box-shadow/

    相关文章

      网友评论

          本文标题:CSS语法

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