| 12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- /* css reset */
- body{
- /* body 有默认8px的外边距,需要重置 */
- margin: 0;
- }
- /* 页面背景色 */
- body{
- background-color: #FAFAFA;
- }
- /* 文章容器 */
- .container{
- width: 720px;
- background-color: #ffffff;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
- margin:0 auto;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <h1>文章标题</h1>
- </div>
- </body>
- </html>
|