我正在努力使我的网站对搜索引擎更友好。在丁,所以我试图纠正validator.w3.org中列出的所有警告和错误。
我要纠正的错误之一是: table元素的width属性已过时。改用CSS。
代码是:
<table width="1100" border="0" cellspacing="0" cellpadding="0" align="center">
有人可以提供一个如何用CSS编写的例子吗?
答案 0 :(得分:0)
又快又脏:
<table style="width: 1100px; text-align: center; border: 0px; border-collapse: collapse;">
正确的方法是将所有css放入一个单独的文件中并通过
链接<link rel="stylesheet" type="text/css" href="style.css">
,style.css的内容为:
table {
width: 1100px;
text-align: center;
border: 0px;
border-collapse: collapse;
}
多个表的更新:
<table id="table-one"> ... </table>
<table id="table-two"> ... </table>
在css文件中:
table {
text-align: center;
border: 0px;
border-collapse: collapse;
}
table#table-one {
width: 1100px;
}
table#table-two {
width: 980px;
}
但是,如果你正在建立自己的网站,为什么不看看学习CSS? https://www.codecademy.com/learn/learn-html-css是一个很好的起点。