我们在制作网页的时候可以用CSS3添加边框,那么如果要给边框添加阴影该怎么做呢?下面我给大家分享一下。
工具/材料SublimeText
首先打开Sublime Text软件,新建一个HTML文档,如下图所示
然后在html文档的Body区域插入一个div,如下图所示
接下来给div定义一些样式,注意其中的box-shadow就是定义边框阴影的,如下图所示
最后我们运行界面程序,你会看到边框已经被添加上阴影了,如下图所示
CSS 实现让div的四个边框都有阴影的效果:
首先:
HTML代码
<h1>CSS 如何实现让div的四个边框都有阴影的效果?</h1>
<div class="g1">
<div class="g2"></div>
</div>
CSS代码body{background:#f00}
html{background:#f00}/*html加背景色*/
.g1{
width:500px
height:500px
border:2px solid #fff
margin:30px auto
background-color:#fff
box-sizing:border-box
}
.g2{
width:400px
height:400px
margin:50px auto
border:2px solid #000
box-shadow:5px 5px 5px #000,5px -5px 5px #000,-5px 5px 5px #000,-5px -5px 5px #000
}
具体效果: