我想让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%;
}
}