美文网首页
浏览器私有化前缀

浏览器私有化前缀

作者: 琪33 | 来源:发表于2018-04-25 10:54 被阅读0次
 <style>
        .box{
            width: 1000px;
            height: 200px;
            margin:100px auto;
            border: 1px solid #000;
            /*background-color: red;*/
            /* 浏览器私有化前缀:
                -webkit-: 谷歌 苹果
                -moz-:火狐
                -ms-:ie
                -o-:欧朋
            */
            background:-webkit-linear-gradient(left,red,blue);
            background:-moz-linear-gradient(left,red,blue);
            background:-ms-linear-gradient(left,red,blue);
            background:-o-linear-gradient(left,red,blue);
            background:linear-gradient(left,red,blue);

        }
    </style>
</head>
<body>
    <div class="box"></div>
</body>

相关文章

网友评论

      本文标题:浏览器私有化前缀

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