<html>
<head>
<title>QuickLinks</title>
<style>
body{
overflow: all;
width: 100px;
height: 100px;
}
a{
color: blue;
text-decoration: none;
}
</head>
<body>
<a href="popup.html">Back to main</a>
<hr id="85">
<hr id="85">
<div id="83">
<a href="https://github.com/jHoyne/QuickLinks/issues" target="_blank">Issues</a>
</div>
</body>
</html>
&#13;
不会在chrome中渲染。不确定其他人。文件保存为google.html,用于目录样式的Chrome扩展程序,不会在chrome中的任何位置呈现。
答案 0 :(得分:1)
http://validator.w3.org/#validate_by_input
更多地使用它。
根据验证器,我认为有7个错误。
我注意到你错过了&lt; ./ style&gt;标签。 (忽略'。')。
答案 1 :(得分:0)
我在你的代码中发现了一些错误。 1.在您的代码中没有结束样式标记。 2.使用后端样式标记标记结束。
我修改了你的代码。它很好。
<style>
body{
overflow: all;
width: 100px;
height: 100px;
}
a{
color: blue;
text-decoration: none;
}
</style>
<head> </head>
<title>QuickLinks</title>
<body>
<a href="popup.html">Back to main</a>
<hr id="85">
<hr id="85">
<div id="83">
<a href="https://github.com/jHoyne/QuickLinks/issues" target="_blank">Issues</a>
</div>
</body>