|
发表于 2018-10-11 23:38:35
|
显示全部楼层
HTML
- <!DOCTYPE html>
- <html>
- <head>
- <title>
- XXX
- </title>
- <meta charset="utf-8">
- <link href="008.css" rel="stylesheet">
- </head>
- <body>
- <div id="container">
- <h1>我爱鱼C</h1>
- <p>www.FishC.com - 让编程改变世界</p>
- <a href="http://bbs.fishc.com/forum-337-1.html">传送门</a>
- </div>
- </body>
- </html>
复制代码
CSS文件
- @charset 'utf-8';
- html {
- height: 100%;
- color: #FF0088;
- /* font-family: sans-serif; */
- font-family: sans-serif;
- }
- body {
- background: url(background.jpg) center center;
- background-size: cover;
- margin: 0;
- padding: 0;
- /*position: relative;*/
- }
- #container {
- width: 100%;
- text-align: center;
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- }
- h1 {
- font-size: 66px;
- margin-bottom: 22px;
- }
- p {
- font-size: 33px;
- margin-bottom: 22px;
- }
- a {
- font-size: 55px;
- color: rgb(243, 211, 107);
- border: 1px solid #33ffff;
- border-radius: 10px;
- padding: 10px 66px;
- text-decoration: none;
- background: #33ffff
- }
复制代码 |
|