我正在尝试向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>
这对我来说很好