我在面板中有一个PrimeFaces dataTable。但它有一个令人不安的外部边界,我想删除它但失败了。这是xhtml代码:
<p:panel styleClass="centerPanel" id="centerPanel">
<p:dataTable styleClass="DataTable" style="width:100%;" liveScroll="true" value="#{PanelController.panelList}" var="GridPanel" scrollable="true" scrollRows="20" scrollHeight="470" rows="5">
<p:column>
</p:column>
</p:dataTable>
</p:panel>
以下是css代码:
.ui-datatable.DataTable th, .ui-datatable.DataTable tr, .ui-datatable.DataTable td, .ui-datatable.DataTable {
background: rgba(220, 220, 220, 0.50) none;
border: none; !important;
border-color: rgba(0,0,0,0); !important;
-webkit-background-clip:border;!important;
color:rgba(0,0,0,0);
}
.DataTable.ui-datatable table thead {
display: none;
border: none; !important;
}
似乎
答案 0 :(得分:1)
使用以下css样式:
.DataTable table > thead > tr > th,
.DataTable table > tbody,
.DataTable table > tbody > tr,
.DataTable table > tbody > tr > td {
border: none !important;
}
如果您不关心过滤器输入框,只需执行此类元素
.DataTable table * {
border: none !important;
}