gpt4 book ai didi

CSS 样式表 : A, TD、TH 和表格标签

转载 作者:太空宇宙 更新时间:2023-11-04 05:20:01 25 4
gpt4 key购买 nike

我的 CSS 有问题。当我在 Apple Safari 中查看我的页面时,该页面的样式正确。但是,当我在 Google Chrome 或 Mozilla Firefox 中查看我的页面时,该页面的样式不正确。首先,a、table、th 和 td 标签在 Firefox 和 Google Chrome 中不起作用。其他一切似乎都运行良好。

这是我的样式表:

a{
margin-left:300px;
font-family:Arial, Helvetica, sans-serif;
}

br{
clear: left;
}

font{
font-family:Arial, Helvetica, sans-serif;
}

label{
font-family:Arial, Helvetica, sans-serif;
float: left;
display: block;
width: 300px;
}

legend{
color:#ff0000;
font-family:Arial, Helvetica, sans-serif;
font-weight: bold;
}

table{
margin-left:300px;
}

td{
font-family:Arial, Helvetica, sans-serif;
}

textarea{
width: 300px;
height: 150px;
}

th{
color:#ff0000;
font-family:Arial, Helvetica, sans-serif;
}

.width{
width: 300px;
}

这是我的整个 HTML 页面。

<!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>ACISS | Statute Search</title>
<link rel="stylesheet" type="text/css" href="statute.css" />

</head>

<body>
<font>
Your search yielded the following results:
</font>
<table border='1'>
<tr>
<th>ACISS Statute</th>
<th>ACISS Charge</th>
<th>UCR</th>
</tr>
<?php
while($row = mysql_fetch_array($result)){?>
<tr>
<td><?php echo $row['ACISS_statute']?></td>
<td><?php echo $row['ACISS_charge_name']?></td>
<td><?php echo $row['ACISS_UCR']?></td>
</tr>
<?php } ?>
</table>
<br />
<a href="http://localhost:80/statute_search/">Click Here to Search Again</a>

</body>
</html>

最佳答案

如果没有 HTML,我不能 100% 确定问题出在哪里,但我最好的猜测是它与浏览器默认设置有关。通过用 the html5 doctor reset sheet 之类的东西重置它们一切都可能在跨浏览器上看起来是一样的。

关于CSS 样式表 : A, TD、TH 和表格标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6851382/

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