兼容低版本IE浏览器的边框阴影效果:
使用box-show属性可以实现边框阴影效果,但是IE8和IE8以下浏览器不支持此属性,不过可以通过以下方式实现,当然实现全兼容的方式有多种,下面是一种比较简陋的方式,代码实例如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.51texiao.cn/" /> <title>蚂蚁部落</title> <style type="text/css"> *{ margin:0; padding:0; border:0; } body{ padding:4em; font-family:Tahoma, Geneva, sans-serif } .box{ width:300px; background-color:#666 } .box p{ padding:30px; position:relative; top:-5px; left:-5px; zoom:1; background-color:#ccc } </style> </head> <body> <div class="box"> <p>蚂蚁部落欢迎您</p> </div> </body> </html>
上面代码实现了模拟的阴影效果,当然比较粗糙,不过在一定情况下还是满足需求的。
原理很简单,就是设置div和p的背景颜色,然后将p元素设置为相对定位,并且设置left和top属性值这样就可以将两个元素错开了,于是底部div的背景颜色就显露出来了,这样就实现了阴影效果。
原文地址是:http://www.51texiao.cn/HTML5jiaocheng/2015/0521/2137.html
时间: 2024-10-29 19:09:39