gpt4 book ai didi

html - 将表头设置为水平扩展时出现问题

转载 作者:行者123 更新时间:2023-11-28 04:19:07 25 4
gpt4 key购买 nike

Invoice Picture

大家好,

我刚开始学习 HTML 和 CSS,并决定开始我的第一个学习元素。我正在尝试重新创建一个与所附图片完全相同的发票模板。我在对齐标有“运送方法,订单日期...”的表格标题时遇到问题,无法像图片上那样展开。我尝试调整 th 标签内的宽度并设置像素值,但我卡住了。

谢谢你们的帮助,伙计们!

这是我到目前为止编写的代码:

       <!DOCTYPE html>
<head>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto">
<style>
body {
font-family: 'Roboto';
margin: 0;
body: 0;
}

.shipto {

color: #fff;
white-space: pre;
background:#000;
width: 40px;
height: 225px;
position: relative;
left: 400px;
bottom: 30px;
}

.top-box {
color: #fff;
table-layout: fixed;
}

th {
white-space: nowrap;
width: 100%;
height: 100%;
}


</style>
</head>
<body>
<img src="https://c1.staticflickr.com/3/2926/32085237484_4b8c92a6b2_z.jpg" width="300" height="44" alt="Adidas Logo">
<div class="shipto">
<h4>
S
h
i
p

T
o
</h4>
<div class="top-box">
<table border="1" summary="order information" bgcolor="black" cellpadding="15" cellspacing="0">

<tr>
<th>SHIP METHOD</th>
<th>ORDER DATE</th>
<th>ORDER NO.</th>
<th>DELIVERY NO.</th>
<th>PAYMENT TYPE</th>

</tr>
</div>

</body>

最佳答案

您可以使用 , height:0/auto , 还有 min-height:empty伪隐藏一些单元格。

rowspan 和 colspan 也很有用

标签caption也可以用

table {
border-collapse: collapse;
height:80vh;
margin:auto;
}
tr >*{
height:0;
}
tr:first-child,
tr:nth-child(3) {
background-color: black;
color: white;
}

tr:last-child >*{
height: auto;
vertical-align: top;
}

th,
td {
border: solid 1px;
padding: 0.2em 1em 0.5em;
}

th:empty {
display: none;
}
caption {
caption-side:left;
writing-mode:vertical-lr;
text-align:center;
min-height:80vh;
font-size:2em;
background:lightgray;
}
<table>
<caption>Shipto</caption>
<tr>
<th colspan="2">Ship Method</th>
<th>Order Date</th>
<th>Order No.</th>
<th>Delivery No.</th>
<th>Payment Type</th>
<th></th>
</tr>
<tr>
<td colspan="2">UPS 2 Days Res. UPSZ</td>
<td>06/27/2015</td>
<td>A002324434a</td>
<td>2203552102</td>
<td>VISA9738</td>
<td>Unit Pr</td>
</tr>
<tr>
<td>Line #</td>
<td>ITEM / UPC</td>
<td colspan="4">Desciption</td>
<td></td>
</tr>
<tr>
<td>1</td>
<td>AQ432_11</td>
<td colspan="4">YEEZY BOOST 350 mULTI</td>
<td>$ 2222.22</td>
</tr>
</table>

关于html - 将表头设置为水平扩展时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42308437/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com