记录一下,好记性不如烂笔头,高手都是新手过来的,加油久伴 <!DOCTYPE html> <html> <head&…
记录一下,好记性不如烂笔头,高手都是新手过来的,加油久伴
.
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset=“utf-8”>
- <title></title>
- <style type=“text/css”>
-
- .jiuba {
- position: absolute;
- left: 50%;
- margin-left: –50px;
-
- }
-
- .jiuba a {
- display: inline–block;
- width: 100px;
- height: 28px;
- color:#ffffff;
- border: 1px solid #ccc;
- line-height: 28px;
- text-align: center;
- text-decoration: none;
- background-color:#4876FF;
- border-radius: 50px;
-
- }
-
- .jiuba a:hover {
- color: red;
- }
- </style>
- </head>
- <body>
- <div class=“jiuba”>
- <a href=“#”>软件下载</a>
- <a href=“#”>软件下载</a>
- </div>
- </body>
- </html>
.