进行了重大修订以演示 CSS 中的问题并阐明原因:
Chrome 和 Safari 显示此代码:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style>
BODY { background:#fff; }
.survey_table TD {
vertical-align:top;
}
</style>
</head>
<body>
<table class="survey_table">
<tbody>
<tr>
<td>
2. Are you familiar with the <a href="http://example.com">Louisiana Sanitary Code</a><sup>1</sup> requirements for laboratories to report notifiable (reportable) conditions to the Louisiana Office of Public Health?
</td>
</tr>
</tbody>
</table>
</body>
</html>
像这样:
Firefox 和 IE 显示如下:
问题来自 TD 上的 CSSvertical-align:top;
有谁知道如何让 Webkit 浏览器像 FF 和 IE 一样显示并保留 CSS 垂直对齐?