1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <!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>
- div{
- width: 300px;
- height: 50px;
- background: #ccc;
- /* 字体相关属性 */
- font-family:Microsoft YaHei,Heiti SC,tahoma,arial,Hiragino Sans GB,"\5B8B\4F53",sans-serif;
- /* 字体大小 浏览器默认字体大小是16px 浏览器能支持的最小 12px */
- font-size: 16px;
- /* 字体粗细 100-900 没有单位 400|normal 默认值 700|bold 900|bolder */
- font-weight:900 ;
- /* 字体风格 italic 斜体|normal 正常 默认值*/
- font-style: italic;
- color:red;
- /* 文本相关属性 */
- /* 文本水平对齐 left 左|center中|right右 */
- text-align: center;
- /* 垂直对齐方式 行高=高 */
- line-height: 50px;
- /* 文本修饰 underline下划线 | line-through中划线|none没有 默认值 */
- text-decoration: none;
-
- /* 文本缩进 */
- text-indent: 20px;
- }
- /* a标签 自带下划线 ; 可以通过 text-decoration: none 去掉*/
- a{
- text-decoration: none;
- }
- </style>
- </head>
- <body>
-
- <div>
- 我是一个div 哈哈哈
- </div>
- 我是一个div 哈哈哈
- <a href="#">amjahhaj</a>
- </body>
- </html>
|