作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在我的网站上制作一个定价表;然而,表格的左侧在其列中留有空白。
<h1>Pricing</h1>
<table>
<thead>
<tr><th>Service/Item</th><th>Price (GBP)</th></tr>
</thead>
<tbody>
<tr><td class="left"><h3>Full Diagnosis & Solution</h3></td><td>50.00</td></tr>
<tr><td class="left"><h3>Low-End Glasses</h3></td><td>10</td></tr>
<tr><td class="left"><h3>Mid-Range Glasses</h3></td><td>50</td></tr>
<tr><td class="left"><h3>High-End Glasses</h3></td><td>65</td></tr>
<tr><td class="left"><h3>Designer Glasses</h3></td><td>80</td></tr>
</tbody>
</table>
我试图让列横跨两行,这样就不会有空格,但这并没有解决问题。
图片 - https://imgur.com/a/wcKRF9d
我想把空格去掉,让空格变成黄色。
最佳答案
如果没有 css,看起来你给字母的背景颜色而不是 <td>
.这是一个工作片段。
table {
width: 80%;
font-family: Helvetica, Arial, Sans-Serif;
}
thead th {
font-weight: 600;
text-align: left;
color: #FFFFFF;
background-color: #3b3b3b;
padding: 10px 5px;
}
tbody td {
background-color: #f0efe2;
padding: 5px;
}
h3 {
color: green;
}
<h1>Pricing</h1>
<table>
<thead>
<tr>
<th>Service/Item</th>
<th>Price (GBP)</th>
</tr>
</thead>
<tbody>
<tr>
<td class="left">
<h3>Full Diagnosis & Solution</h3>
</td>
<td>50.00</td>
</tr>
<tr>
<td class="left">
<h3>Low-End Glasses</h3>
</td>
<td>10</td>
</tr>
<tr>
<td class="left">
<h3>Mid-Range Glasses</h3>
</td>
<td>50</td>
</tr>
<tr>
<td class="left">
<h3>High-End Glasses</h3>
</td>
<td>65</td>
</tr>
<tr>
<td class="left">
<h3>Designer Glasses</h3>
</td>
<td>80</td>
</tr>
</tbody>
</table>
关于css - HTML 表格列留有空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54051944/
这是我的jade雕像: section#entry-review-template.template(data-class='entry-review') table thead
我是一名优秀的程序员,十分优秀!