| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #news {
- width: 300px;
- height: 300px;
- background: #00f;
- color: rgba(0, 255, 0, .3);
- font-size: 30px;
- /* font-weight: normal;
- font-style: normal; */
- font-family: 'Times New Roman', Times, serif;
- opacity: 1;
- background: transparent;
- }
- /*
- 常用16进制颜色 rgb颜色 rgba(a=>alpha) 0(全透明)~1(全显示)
- 红色 #f00 #ff0000 rbg(255,0,0)
- 黄色 #ff0 #ffff00 rbg(255,255,0)
- 绿色 #0f0 #00ff00 rbg(0,255,0)
- 蓝色 #00f #0000ff rbg(0,0,255)
- 白色 #fff #ffffff rbg(255,255,255)
- 黑色 #000 #000000 rbg(0,0,0)
- */
- /* 文字颜色 color
- 字体大小 font-size:xxpx;
- 浏览器默认的根字体大小16px
- 最小可识别字体 12px
- 字体粗细
- font-weight
- 加粗 bold bolder 600~900
- 正常 normal 400 500
- 变细 lighter 100~300
- 字体样式
- font-style
- 倾斜 italic
- 正常 normal
- 字体
- font-family
- 透明度
- opacity:0(全透明)~1(全显示) 元素透明 不消失
- transparent 透明色 元素消失
- */
- </style>
- </head>
- <body>
- <div id="news">这是一段文字</div>
- </body>
- </html>
|