强制p:databale填充容器而不使用style =“width:100%”

时间:2016-08-22 06:33:29

标签: css primefaces

我想让p:datatable填充其容器。但我想保留style="width: auto"。否则,表将无法在小型浏览器窗口(mobile)中正确显示。有没有办法做到这一点?

我使用以下作为解决方法。

.ab-my-table table.ui-responsive.ui-table {
       width: auto;
 }

/* Use 100% width for  table in large screens to get a nicer look */
@media all and (min-width: 800px) {
   .ab-my-table table.ui-responsive.ui-table {
       width: 100%;
   }
}

0 个答案:

没有答案