我使用以下方法删除了我的primefaces panelgrid组件的所有边框:
第一个:
.table, table td {
border-style: hidden !important;
}
另一个:
.table, table tr, table td {
border: none !important;
}
边框和边框式属性有什么区别?
答案 0 :(得分:2)
border
是设置边框属性的简写表示法。
请参阅详情:http://www.w3.org/TR/css3-background/#the-border-shorthands
答案 1 :(得分:0)
border-style
定义边框的类型(或样式):实线,点线,虚线,隐藏等。
border
在一个定义中定义所有边界属性,因此它包括上面的样式以及颜色和宽度,这样(属性的顺序并不重要):
border: <width> <style> <color>;