使用下面提到的代码在WordPress帖子中显示表格。它正确地显示了表格,但我想做出响应,所以我使用自定义CSS代码来制作响应式表格布局。它正在工作,但在调整页面布局时丢失了表头。任何人都可以指导我。
$menu .= '<table><thead><tr><th>Name</th><th>Description</th><th>Price</th></tr></thead>';
while ( have_rows('sections_items') ) : the_row();
// Your loop code
$menu .= '<tr><td>'.get_sub_field('dish_names').'</td><td>'.get_sub_field('dish_description').'</td><td>$ '.get_sub_field('dish_price').'</td></tr>';
endwhile;
$menu .= '</table> ';
/ * CSS代码* /
body {
font-family: "Open Sans", sans-serif;
line-height: 1.25;
}
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 100%;
table-layout: fixed;
}
table caption {
font-size: 1.5em;
margin: .5em 0 .75em;
}
table tr {
background: #f8f8f8;
border: 1px solid #ddd;
padding: .35em;
}
table th,
table td {
padding: .625em;
text-align: center;
}
table th {
font-size: .85em;
letter-spacing: .1em;
text-transform: uppercase;
}
@media screen and (max-width: 600px) {
table {
border: 0;
}
table caption {
font-size: 1.3em;
}
table thead {
border: none;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
table tr {
border-bottom: 3px solid #ddd;
display: block;
margin-bottom: .625em;
}
table td {
border-bottom: 1px solid #ddd;
display: block;
font-size: .8em;
text-align: right;
}
table td:before {
/*
* aria-label has no advantage, it won't be read inside a table
content: attr(aria-label);
*/
content: attr(data-label);
float: left;
font-weight: bold;
text-transform: uppercase;
}
table td:last-child {
border-bottom: 0;
}
}
/ *结束了css * /这是表格中的表格
答案 0 :(得分:0)
看起来代码成功隐藏了现有的thead / th标签,并将tr和td标签从行交换到列,反之亦然,聪明。也许您可以使用:之前在CSS中重新添加每个表中相应td标记之前的标题信息。我在CSS的末尾添加了以下内容(在最后2个波形括号之前:
td:nth-of-type(1):before { content: "Name"; }
td:nth-of-type(2):before { content: "Description"; }
td:nth-of-type(3):before { content: "Price"; }
我认为你也可以从Javascript更改这些内容,如果将其编码到CSS中是不可接受的。
这里是JSfiddle:permissions