gpt4 book ai didi

HTML Strict 增加行高

转载 作者:太空狗 更新时间:2023-10-29 16:48:04 26 4
gpt4 key购买 nike

为什么 XHTML 1.0 Strict 显示的行高比 XHTML 1.0 Transitional 中相同值的行高显示得大?

因此,这将下推表格单元格中的内容(即 Firefox 中的 Hotmail、IE 和 Firefox 中的 Gmail)。有没有其他人遇到过这个问题并知道解决方法?

干杯

下面是每种 XHTML 类型的示例代码:

过渡性的:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="500" border="1" cellspacing="0" cellpadding="0">
<tr>
<td style="line-height:18px;"><font style="line-height:18px; font-size:16px; font-family:Arial, Helvetica, sans-serif;">This cell will be larger in Strict</font></td>
</tr>
</table>

</body>
</html>

严格:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<table width="500" border="1" cellspacing="0" cellpadding="0">
<tr>
<td style="line-height:18px;"><font style="line-height:18px; font-size:16px; font-family:Arial, Helvetica, sans-serif;">This cell will be larger in Strict</font></td>
</tr>
</table>
</body>
</html>

最佳答案

@ryano 据我所知,对此没有明确的解决方法,大多数人似乎都在使用 margin-top:-2px; 修复表格单元格本身。

希望对您有所帮助。

关于HTML Strict 增加行高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2864562/

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