我有以下示例代码:
<!DOCTYPE html>
<html>
<head>
<title>Example Website</title>
<link rel="stylesheet" type="css" href="style.css">
</head>
<body>
<div class="left_nav">1 2 3</div>
<div class="body_main">
<div class="top_nav_right">Create account Log in</div>
<div class="top_nav">
<span>Article Talk</span> <span class="top_nav_right2">Read
Edit View history</span>
</div>
</body>
</html>
在我的 CSS 中:
.body_main {
margin-left: 11em;
}
.top_nav_right {
float: right;
margin-top: 1em;
margin-bottom: 1em;
}
.top_nav {
height: 2.5em;
margin-top: 3em;
}
.top_nav_right2 {
float: right;
}
我不确定为什么“创建帐户登录”出现在“阅读编辑查看历史记录”下方。这些都是 div,我在 Create 之后有 Read 。
此外,出于某种原因,只有 Chrome 显示 CSS。我已将 CSS 放入验证器中