我正在尝试向div添加一个底部边框
.divLast { top: 0px; margin:0px; padding: 0px 2px 2px 3px; border-width: 2px; border-bottom-width:2px; border-bottom-color:White; width: 100%; }@H_502_4@但是底部边框不显示为白色.任何想法?
解决方法
你必须指定
border-bottom-style也到div
@H_502_4@你的代码就变成了
.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%; }@H_502_4@或者您可以使用如下的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>@H_502_4@这对我来说很好