码迷,mamicode.com
首页 > Web开发 > 详细

用CSS画网格线,在IE中

时间:2016-04-07 18:55:29      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:ie   lineargradient   firefox   

想在div中给背景画上网格线,看到一个例子

<html>
<head>
<style type="text/css">
div{
    width:400px;
    height:280px;
    margin:10px;
    border:1px solid #000000; 
}
.grid{
    background:-webkit-linear-gradient(
        top,transparent 39px,blue 39px,blue 41px,transparent 41px,transparent 79px,red             80px
    );
    background-size:81px 81px;
}
</style>
</head>
<body>
<div id="grid" class="grid"></div>
</body>
</html>


为了节省时间上面的例子只是画了横排的线

但是打开网页发现只有Chrome显示这些线

后来发现-webkit就是Chrome的,其它浏览器用的是不同的

于是把IE和FF的也写上,如下


<html>
<head>
<style type="text/css">
div{
    width:400px;
    height:280px;
    margin:10px;
    border:1px solid #000000; 
}
.grid{
    background:-ms-linear-gradient(
        top,transparent 39px,blue 39px,blue 41px,transparent 41px,transparent 79px,red             80px
    );
    background:-moz-linear-gradient(
        top,transparent 39px,blue 39px,blue 41px,transparent 41px,transparent 79px,red             80px
    );
    background:-webkit-linear-gradient(
        top,transparent 39px,blue 39px,blue 41px,transparent 41px,transparent 79px,red             80px
    );
    background-size:81px 81px;
}
</style>
</head>
<body>
<div id="grid" class="grid"></div>
</body>
</html>


很显然,-ms-linear-gradient就是IE,-moz-linear-gradient就是FF(FF没测试,IE测试OK)

本文出自 “树下野兽” 博客,请务必保留此出处http://shuxiayeshou.blog.51cto.com/4452347/1761245

用CSS画网格线,在IE中

标签:ie   lineargradient   firefox   

原文地址:http://shuxiayeshou.blog.51cto.com/4452347/1761245

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!