我在页面上有两个表格http://fadendaten.herokuapp.com/cart
两个表都有thead。
<table class="stack articles">
<thead>
<tr>
<th class="article" colspan="2">Artikel</th>
<th class="size">Grösse</th>
<th class="amount">Menge</th>
<th class="price">Preis</th>
<th class="total">Gesamtpreis</th>
</tr>
</thead>
<tbody>
....
但奇怪的是,在中视口640px-1024px中看不到thead。
我认为这是由媒体查询引起的,但是我无法找到css中不可见的位置。
有人能帮助我吗?
答案 0 :(得分:0)
感谢@turnip和@BenG,我找到了位置:
@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
table.stack thead {
display: inline;
}
}