|
发表于 2017-2-21 21:50:02
|
显示全部楼层
html
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>欢迎来到HTML世界</title>
- <link href="003-CSS.css" rel="stylesheet">
- </head>
- <body>
- <div id="contatiner">
- <h1>我爱鱼C</h1>
- <p>WWW.FihsC.com - 让编程改变世界</p>
- <a href="http://bbs.fishc.com/forum-337-1.html">传送门</a>
- </div>
- </body>
- </html>
复制代码
css
- @charset "UTF-8"
- html,body{
- height: 100%;
- color: #FF0088;
- font-family: sans-serif;
- }
- body{
- background: url(asdf.jpg) center center;
- background-size: cover;
- margin: 0; /*养成初始化好习惯*/
- padding: 0;
- position: relative;
- }
- #contatiner{
- 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: #00AA00;
- border: 1px solid #00AA00;
- border-radius: 10px;
- padding: 10px 66px;
- text-decoration: none;
- }
复制代码 |
|