gpt4 book ai didi

css - 使单元格内容适合 HTML CSS 表格中的单元格高度

转载 作者:太空宇宙 更新时间:2023-11-03 17:40:31 24 4
gpt4 key购买 nike

我有一个使用以下代码生成的 css 样式表。我试图使单元格高度适合内容(此处为 DATA1 和 DATA2)。但我无法生成内容适合高度的单元格。我该怎么做?

我试过提到的东西 here ,但它没有显示 Ant 的变化。请注意,我将宽度保持为 100%,并且我只关注高度适合。

<style>
#customers
{
font-family: Arial, Helvetica, sans-serif;
width: 100%;
border-collapse: collapse;
}


#customers td, #customers th
{
border: 1px solid #98bf21;
padding: 3px 7px 2px 7px;
font-size:15px
}


#customers tr.alt td
{
color: #000000;
background-color: #EAF2D3;
}
</style>
</head>
<body>

<table id="customers">
<tr class="alt">
<td>DATA1 </td>
<td>DATA2</td>
</tr>
</table>

最佳答案

    <style>
#customers
{
font-family: Arial, Helvetica, sans-serif;

border-collapse: collapse;
}


#customers td, #customers th
{
border: 1px solid #98bf21;
line-height:10px;
font-size:15px
}


#customers tr.alt td
{
color: #000000;
background-color: #EAF2D3;
}
</style>
</head>
<body>

<table id="customers">
<tr class="alt">
<td>DATA1 </td>
<td>DATA2</td>
</tr>
</table>

从#customer td 和#th 中删除填充,它会整理单元格和内容之间顶部和底部的间隙,并使用 line-height:Xpx 使单元格接触内容(甚至覆盖您的内容)

关于css - 使单元格内容适合 HTML CSS 表格中的单元格高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29181799/

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