您好,我正在创建一个网站,但我不能
这是我的代码:
body {
font-family: "Segoe UI", Tahoma, sans-serif;
font-size: 18px;
background-color: ffffff;
overflow: auto;
}
<body>
<div class="main">
<img src=images\cat.gif></img>
<table class="table">
<tr>
<th style="text-align:left;">
<p id="output"><b>Likes: 0</b>
</p>
</th>
<th style="text-align:right;">
<button class="button" onclick="likeButton()">Like</button>
</th>
</tr>
</table>
<script src="script.js"></script>
</div>
</body>
我现在已经知道什么地方出了问题,但我所见过的所有指南都有固定的语法错误,但经过三重检查,几乎可以肯定,在其他文档中我也没有同样的问题。我可能不好。谢谢...
最佳答案
body {
font-family: "Segoe UI",Tahoma,sans-serif;
font-size: 18px;
background-color: #ffffff;
overflow: auto;
}
尝试这个