移动设备上的表格行不会超过100%的宽度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动设备上的表格行不会超过100%的宽度相关的知识,希望对你有一定的参考价值。
我有一张桌子,我正用于网站上的购物篮。这一切都运作良好,但一旦我添加了tfoot
,tbody
将不会超过容器宽度的100%。
我很确定问题与tfoot
有关,但我无法找出答案。我认为这与colspan
无法在移动设备上工作有关,因为我隐藏了身体中的一个细胞(所以它是不均匀的)但是没有做任何事情。
这是我的例子:https://codepen.io/moy/pen/KQJdbV
.page {
margin: 0 auto;
max-width: 1000px;
}
/**
* Basket table rules.
*/
.basket {
width: 100%;
}
.basket td > *:last-child {
margin-bottom: 0;
}
.basket__head th {
display: none;
}
.basket__head th:first-child {
display: block;
}
@media only screen and (min-width: 800px) {
.basket__head th {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.basket__head th:first-child {
display: table-cell;
text-align: left;
}
}
.basket__body tr {
border-bottom: 2px solid #eee;
display: block;
padding: 15px;
}
.basket__body td {
border-bottom: 0;
display: block;
padding: 0;
}
.basket__body td.basket__price {
display: none;
}
@media only screen and (min-width: 800px) {
.basket__body {
text-align: center;
}
.basket__body tr {
display: table-row;
}
.basket__body td {
border-bottom: 2px solid #eee;
display: table-cell;
padding: 15px;
vertical-align: middle;
}
.basket__body td.basket__price {
display: table-cell;
}
}
.basket__foot {
border-bottom: 2px solid #eee;
color: #111;
font-weight: 700;
text-align: right;
text-transform: uppercase;
}
.basket__foot td {
border-bottom: none;
}
.basket__foot tr:first-child td {
padding: 30px 15px 0;
}
.basket__foot tr:last-child td {
padding: 15px 15px 30px;
}
.basket__foot p {
font-size: 20px;
}
/**
* Basket images.
*/
.basket__image {
float: left;
width: 135px;
}
.basket__image img {
display: block;
width: 100%;
max-width: 100%;
}
@media only screen and (min-width: 800px) {
.basket__image {
float: none;
}
}
/**
* Basket descriptions.
*/
.basket__desc {
margin-left: 150px;
}
@media only screen and (min-width: 800px) {
.basket__desc {
margin-left: 0;
padding-left: 0;
text-align: left;
}
}
.basket__desc h1,
.basket__desc h2,
.basket__desc h3,
.basket__desc h4 {
font-size: 14px;
margin-bottom: 5px;
}
@media only screen and (min-width: 800px) {
.basket__desc h1,
.basket__desc h2,
.basket__desc h3,
.basket__desc h4 {
font-size: 16px;
margin-bottom: 0;
}
}
.basket__desc p {
font-size: 12px;
margin-bottom: 5px;
}
@media only screen and (min-width: 800px) {
.basket__desc p {
font-size: 14px;
}
}
/**
* Basket quantity.
*/
.basket__qty {
margin-left: 150px;
}
.basket__qty .qty {
margin: 15px 0 0;
}
@media only screen and (min-width: 800px) {
.basket__qty {
margin-top: 20px;
width: 105px;
}
}
/**
* Basket price.
*/
.basket__price {
color: #111;
display: none;
width: 120px;
}
@media only screen and (min-width: 800px) {
.basket__price {
display: table-cell;
}
}
.basket-form {
overflow: hidden;
}
.basket-form .btn {
margin-bottom: 10px;
width: 100%;
}
@media only screen and (min-width: 800px) {
.basket-form .btn {
float: right;
margin: 0 0 0 15px;
width: auto;
}
}
<div class="page">
<form class="basket-form">
<table class="basket">
<thead class="basket__head">
<tr>
<th colspan="2">Item</th>
<th>Qty</th>
<th>Price</th>
</tr>
</thead>
<tbody class="basket__body">
<tr>
<td class="basket__image">
<img src="http://via.placeholder.com/350x200" alt="ALT TEXT" />
</td>
<td class="basket__desc">
<h2>Sirloin Steaks</h2>
<p>2 x 227g/8oz Steaks</p>
<p>£11.60</p>
</td>
<td class="basket__qty">1</td>
<td class="basket__price">
<p><strong>£23.20</strong></p>
</td>
</tr>
<tr>
<td class="basket__image">
<img src="http://via.placeholder.com/350x200" alt="ALT TEXT" />
</td>
<td class="basket__desc">
<h2>Silverside Joint</h2>
<p>1kg (serves 2-4)</p>
<p>£6.77</p>
</td>
<td class="basket__qty">1</td>
<td class="basket__price">
<p><strong>£6.77</strong></p>
</td>
</tr>
<tr>
<td class="basket__image">
<img src="http://via.placeholder.com/350x200" alt="ALT TEXT" />
</td>
<td class="basket__desc">
<h2>Rack of Lamb</h2>
<p>2 x 3-bone racks (170g/6oz)</p>
<p>£12.99</p>
</td>
<td class="basket__qty">1</td>
<td class="basket__price">
<p><strong>£12.99</strong></p>
</td>
</tr>
</tbody>
<tfoot class="basket__foot">
<tr>
<td colspan="3">
<p>Shipping</p>
</td>
<td>
<p><strong>FREE</strong></p>
</td>
</tr>
<tr>
<td colspan="3">
<p>Total</p>
</td>
<td>
<p><strong>£42.96</strong></p>
</td>
</tr>
</tfoot>
</table>
<button class="btn btn--large">Checkout</button>
<a href="#" class="btn btn--neutral btn--large">Update Basket</a>
</form>
</div>
任何人都可以发现我错过的东西吗?
我确实希望在tfoot
内联2个单元格,但第一个单元格的文本与左侧对齐,最后一个/第二个单元格在右侧。如果这有什么不同?
答案
你有
text-align: right;
在.basket__foot类中,其中使用colspan = 3的td继承。在你的css文件的末尾添加它,它将在左边对齐它。
.basket__foot p:first-child {
text-align: left;
}
同时点击ctrl-shift-i并检查标签元素,当你悬停在标签上时会看到元素尺寸
以上是关于移动设备上的表格行不会超过100%的宽度的主要内容,如果未能解决你的问题,请参考以下文章
Easyui datagrid 设置内容超过单元格宽度时自动换行显示