css – 向div添加底部边框

前端之家收集整理的这篇文章主要介绍了css – 向div添加底部边框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试向div添加一个底部边框
.divLast
{
   top: 0px;
   margin:0px;  
   padding: 0px 2px 2px 3px;    
   border-width: 2px;
   border-bottom-width:2px;
   border-bottom-color:White;
   width: 100%;
}

但是底部边框不显示为白色.任何想法?

解决方法

你必须指定 border-bottom-style也到div

你的代码就变成了

.divLast 
{
   top: 0px;
   margin:0px;  
   padding: 0px 2px 2px 3px;    
   border-width: 2px;
   border-bottom-width:2px;
   border-bottom-color:White;
   border-bottom-style: solid;
   width: 100%;
}

或者您可以使用如下的border-bottom的速记

<style>
.divLast 
{
   top: 0px;
   margin:0px;  
   padding: 0px 2px 2px 3px;    
   border-width: 2px;
   border-bottom: 2px white solid;
   width: 100%;
}
</style>
<div class='divLast'>
   test element with white border bottom
</div>

这对我来说很好

原文链接:https://www.f2er.com/css/216548.html

猜你在找的CSS相关文章