gpt4 book ai didi

css - html中的垂直表格标题

转载 作者:可可西里 更新时间:2023-11-01 13:01:39 24 4
gpt4 key购买 nike

考虑以下 html 文件:

<!DOCTYPE html>
<html>
<head>
<title>Test of table</title>
<style type="text/css">
p {text-align:justify;}
li {text-align:justify;}
ins {background-color:#A0FFA0;}
del {background-color:#FFA0A0;}
.code {background-color:#EEEEEE;}
.codex {background-color:#FFFFE0;}
.custom-table {
text-align:center;
font-family:monospace;
}
</style>
</head>
<body>
<table border="1" class="custom-table">
<tr>
<th></th>
<th>First column</th>
<th>Second column</th>
<th>Third column</th>
</tr>
<tr>
<td>First row</td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>Second row</td>
<td>2</td>
<td>4</td>
<td>6</td>
</tr>
<tr>
<td>Third row</td>
<td>3</td>
<td>6</td>
<td>9</td>
</tr>
</table>
</body>
</html>

我想要第一列第二列第三列(或者换句话说,所有th custom-table 的 code> 元素)文本为非粗体、垂直书写(逆时针旋转 +90°)、在标题单元格内垂直居中和水平居中。如何通过修改此文档来做到这一点?

注意:我不需要与非 html5 浏览器的向后兼容性,我不需要 javascript,也不需要外部 CSS。

这是我想要的对齐类型的示例:

enter image description here

最佳答案

编辑:刚刚发现您希望它逆时针旋转。在这种情况下使用 -90deg

要垂直书写文本,您可以使用 transform: rotate(-90deg) 属性。 th 元素的默认字体粗细是粗体,因此我们需要覆盖它,使字体粗细正常。

您应该能够仅进行转换,但根据浏览器的不同,您可能需要包含供应商前缀。这应该是您要找的东西

<head>
<style>
/* Generally, you should put CSS in a separate file, but for the purpose of this post, I'm including it in the style tag. */
p, li { text-align: justify; }
ins { background-color: #A0FFA0; }
del { background-color: #FFA0A0; }
.code { background-color: #EEEEEE; }
.codex { background-color: #FFFFE0; }

.custom-table {
text-align: center;
font-family: monospace;
border-collapse: collapse;
border-spacing: 0;
}

th {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
width: 95px;
font-weight: normal;
}
td, th {
border: 1px solid black;
}

/* Can't eliminate the spacing no matter what I try */
th:first-child {
height: 100px;
}
th:not(:first-child) {
height: 10px;
}

td:nth-child(2), td:nth-child(3), td:nth-child(4) {
width: 10px;
}
</style>
</head>

<body>
<table class="custom-table">
<tr>
<th></th>
<th>First column</th>
<th>Second column</th>
<th>Third column</th>
</tr>
<tr>
<td>First row</td>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>Second row</td>
<td>2</td>
<td>4</td>
<td>6</td>
</tr>
<tr>
<td>Third row</td>
<td>3</td>
<td>6</td>
<td>9</td>
</tr>
</table>
</body>

编辑:让它看起来更像屏幕截图,但无法弄清楚如何更改单元格的宽度。看起来这是我现在能做的最好的了

关于css - html中的垂直表格标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38270833/

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