我正在运行一些基本的初学者教程,以了解如何正确运行 html。我已经来到了我在 css 中使用 div 标签来居中内容的部分。但是,一旦我打开测试页面,所有内容都锁定在浏览器的右侧。我一直在论坛上搜索任何解决方案,但似乎没有任何解决问题的方法。在 Chrome 和 IE 中测试。
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>My First Website</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div>
<h1> My Website </h1>
<p><a href="about/about.html">Learn more about me.</a></p>
<img src="img/lady.jpg" alt="skyrim">
<h2>My New Section </h2>
</div>
</body>
</html>
这是CSS:
a {
color: red;
text-decoration: none;
}
h1 {
font-family: sans-serif;
}
div {
width: 500px;
margin: 0 auto;
background: red;
text-align: center;
}