边框和边框风格的区别

时间:2013-09-19 14:58:24

标签: css primefaces

我使用以下方法删除了我的primefaces panelgrid组件的所有边框:

第一个:

.table, table td {
    border-style: hidden !important;
}

另一个:

.table, table tr, table td {
    border: none !important;
}

边框和边框式属性有什么区别?

2 个答案:

答案 0 :(得分:2)

border是设置边框属性的简写表示法。

请参阅详情:http://www.w3.org/TR/css3-background/#the-border-shorthands

答案 1 :(得分:0)

border-style定义边框的类型(或样式):实线,点线,虚线,隐藏等。

border在一个定义中定义所有边界属性,因此它包括上面的样式以及颜色和宽度,这样(属性的顺序并不重要): border: <width> <style> <color>;