12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!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>文本的样式2</title>
- <style>
- /*
- text-decoration 设置文本修饰
- 可选值:
- none 什么都没有
- underline 下划线
- line-through 删除线
- overline 上划线
- 还可以同时指定颜色和样式,但是在IE浏览器不支持
- */
- .box1{
- font-size: 50px;
- /* text-decoration: overline; */
- text-decoration: underline red dotted;
- }
- /*
- white-space 设置网页如何处理空白
- 可选值:
- normal 默认值,正常显示
- nowrap 不换行
- pre 保留空白
- */
- .box2{
- width: 400px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- </style>
- </head>
- <body>
- <div class="box2">
- Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque corporis rem ad deleniti ut numquam molestias neque! Saepe odit reprehenderit soluta nostrum nisi libero labore praesentium delectus autem corrupti! Quia?
- </div>
- <!-- <div class="box1">
- 今天天气真不错
- </div> -->
- </body>
- </html>
|