我有一个名为“commentbox”的div
我希望边框solid
颜色为#ccc,但我想要右边,而不是边框。
所以只有div的顶部和底部应该用钻孔线覆盖。感谢
答案 0 :(得分:5)
可能是
.commentbox{
border: solid #ccc;
border-right: none;
}
答案 1 :(得分:1)
这样可行:
.commentbox {
border: 2px solid #ccc;
border-right: none; /* though some amend this to: '0 none transparent' */
}
有效地,您可以在速记第一条规则中声明边框的width
,style
和color
,然后分配style
none
(尽管您可以使用border-right-width: 0
或border-right-color: transparent
在兼容的浏览器中获得相同的结果。
答案 2 :(得分:0)
你可以这样做:
.commentbox{
border:1px solid color #ccc;
border-right:none;
}
规则border:1px solid color #ccc;
将对所有四个边应用边框,但后来规则border-right:none;
会将其从right
方移除,留下边界的三个边。
您可以在CSS-Trick.Com上阅读这篇文章: