div
我的小提琴会告诉你一切,但我需要一个带阴影的边框,现在如果我使用没有高度的空,这很好,我使用box-shadow
属性,但当我div
包含一些文本时没有得到这种效果......所以有什么解决方法为了这?我需要添加一个空元素来实现这种效果吗?
CSS
.what_i_want {
width: 100px;
border-bottom: 2px solid #000000;
margin: 50px;
box-shadow: 0 0 5px #000;
}
.how_i_achieve_the_above_here {
margin: 50px;
border-bottom: 2px solid #000000;
}
HTML
<div class="what_i_want"></div>
<div class="how_i_achieve_the_above_here">Vaibhav</div>