123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- p{
- background: #f00;
- width: 200px;
- height: 200px;
- }
- a{
- background: #0f0;
- width: 200px;
- height: 200px;
- }
- h1{
- display: none;
- }
- </style>
- </head>
- <body>
- <p>哈哈哈</p>
- <a href="#">hehehehehehehhehe</a>
- <a href="#">hehehehehehehhehe</a>
- <h1>ahahahah</h1>
-
- <!--
- 块级元素 1、自己占一行 2、可以设置宽高
- h1-h6 p div ul li
- display:block;
- 行级元素 1、多个占一行 3、不能设置宽高
- a span i b
- display:inline
- 行级块元素 1、多个占一行 2、可以设置宽高
- input
- display:inline-block;
- display:none 隐藏
-
- -->
- </body>
- </html>
|