05.文本的样式2.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>文本的样式2</title>
  8. <style>
  9. /*
  10. text-decoration 设置文本修饰
  11. 可选值:
  12. none 什么都没有
  13. underline 下划线
  14. line-through 删除线
  15. overline 上划线
  16. 还可以同时指定颜色和样式,但是在IE浏览器不支持
  17. */
  18. .box1{
  19. font-size: 50px;
  20. /* text-decoration: overline; */
  21. text-decoration: underline red dotted;
  22. }
  23. /*
  24. white-space 设置网页如何处理空白
  25. 可选值:
  26. normal 默认值,正常显示
  27. nowrap 不换行
  28. pre 保留空白
  29. */
  30. .box2{
  31. width: 400px;
  32. white-space: nowrap;
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="box2">
  40. 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?
  41. </div>
  42. <!-- <div class="box1">
  43. 今天天气真不错
  44. </div> -->
  45. </body>
  46. </html>