我正在尝试设置表格的样式,使行显示为卡片(仍然具有相同的行布局,就像全宽卡片一样)。
到目前为止,我得到了这个:
tbody>tr {
display: block;
padding: 1rem 0.5rem 1rem 0.5rem;
margin: 1.5rem;
border: 1px solid rgba(0, 0, 0, 0.175) !important;
border-radius: 0.375rem !important;
}
字符串
它产生了这样的结果:
的数据
这几乎是我正在寻找的,但我需要的卡是全宽,使数据与标题对齐。有谁知道我该怎么做吗?
表标记如下所示
<div class="container-fluid">
<div class="row justify-content-center">
<div class="col-xxl-10 col-xl-12">
<div class="card">
<div class="card-body">
<div class="p-datatable p-component p-datatable-responsive-scroll" data-scrollselectors=".p-datatable-wrapper" pv_id_11>
<div class="p-datatable-header">
</div>
<div class="p-datatable-wrapper">
<table role="table" class="p-datatable-table">
<thead class="p-datatable-thead" role="rowgroup">
<tr role="row">
<!-- th's for headings -->
</tr>
</thead>
<tbody class="p-datatable-tbody" role="rowgroup">
<tr class tabindex="-1" role="row">
<td class role="cell">
"John Smith"
</td>
<!-- other table cells -->
</tr>
<!-- other rows -->
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
型
3条答案
按热度按时间1u4esq0p1#
您可以尝试扩展
<table>
容器的宽度超文本标记语言:
字符串
CSS格式
型
hkmswyz62#
而不是给填充表行,你可以给予它的表单元格,以避免
display: block
问题的行。更新:对于边距,您可以使用如下的间隔符,因为我们无法在不更改
display
的情况下在行上使用边距个字符
iyr7buue3#
你也许能找到解决办法但这是给未来访客的
这个问题是由
display:blobk;
引起的,就像在其他答案中提到的,我在使用display:flex;
时也遇到了同样的问题。幸运的是,两者都有相同的解决方案,丢失了
display:block/flex;
。问题一:
字符串
x1c 0d1x和
型
的
解决方案:
丢失显示样式。
问题二:
移除显示器给出了几乎可行的解决方案,但是填充和边距现在不会生效:
型
的
最终解决方案:
不是将margin应用于每一行,而是将它应用于具有
border-spacing:0 1rem;
的表,最重要的是将border-collapse
作为separate
最终产品:的字符串
重要
如果你用datatables典当你的表!对两种表格样式都很重要
型