1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <!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>
- #div1 {
- width: 200px;
- height: 200px;
- background: #f00;
- /* 文本 对齐方式*/
- /* 水平对齐 left|center|right */
- text-align: right;
- /* 垂直对齐 单行文本垂直对齐 line-height=height*/
- line-height: 200px;
- /* 字体 默认大小16px 浏览器支持的最小字体 12px*/
- font-size:16px ;
- /* 字体 */
- font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
- /* 字粗细 100-900 没有单位 默认值400|normal 700|bold 900|bolder*/
- font-weight: 700;
- /* 字体样式风格italic |normal */
- font-style: italic;
- /* 设置文字颜色 */
- color:rgb(255,0,0);
- /* #f00 */
-
-
- }
- </style>
- </head>
- <body>
- 哈哈哈哈哈 你好啊
- <div id="div1">
- 哈哈哈哈哈 你好啊
- </div>
- </body>
- </html>
|