1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!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: #f00;
- /* 字体相关的属性 可以继承的 */
- /* 字体大小 浏览器中默认字体大小16px; 浏览器支持的最小字体大小12px*/
- font-size: 16px;
- /* 字体粗细 100-900 默认值400 */
- font-weight: 400;
- /* 字体 */
- font-family: 'Times New Roman', Times, serif;
- /* 字体样式 italic斜体|normal正常 */
- font-style:italic;
- /* 文本相关 */
- /* 水平对齐方式 left right center*/
- text-align:center ;
- /* 单行文本垂直对齐 行高=高 */
- line-height:50px ;
- /* 文本缩进 */
- text-indent: 20px;
- }
- </style>
- </head>
- <body>
- <div>
- 我是div1 哈哈哈哈
- </div>
- </body>
- </html>
|