我想知道如果特定媒体查询处于活动状态,是否可以将表列拆分为新行。
<table class="table">
<tr>
<th class="column1"></th>
<th class="column2"></th>
</tr>
</table>
默认情况下,th
彼此相邻。但是如果触发媒体查询,我希望.column2
进入新行。
有什么建议吗?
答案 0 :(得分:10)
你可以这样做:
table {
width:100%;
padding:0px 50px;
}
.column1 {
background:red;
height:50px;
}
.column2 {
background:blue;
height:50px;
}
@media (max-width:768px) {
th {
width:100%;
display: block;
margin:10px 0px;
}
}
&#13;
<table class="table">
<tr>
<th class="column1"></th>
<th class="column2"></th>
</tr>
</table>
&#13;