<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.cn/w3css/4/w3.css">
<body>
<div>
<h2>没有容器</h2>
<p>w3-container 类是最重要的 W3.CSS 类之一。</p>
<p>它为大多数 HTML 元素提供正确的边距、填充、对齐等。</p>
</div>
<div class="w3-container">
<h2>有容器</h2>
<p>w3-container 类是最重要的 W3.CSS 类之一。</p>
<p>它为大多数 HTML 元素提供正确的边距、填充、对齐等。</p>
</div>
</body>
</html>