2_文本样式.html 842 B

123456789101112131415161718192021222324252627282930313233343536
  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>Document</title>
  8. <style>
  9. div{
  10. width: 200px;
  11. height: 200px;
  12. background: aqua;
  13. /* 强制不换行 */
  14. white-space: nowrap;
  15. overflow: hidden;
  16. /* 文本溢出 */
  17. text-overflow: ellipsis;
  18. /* 文本阴影 左右 上下 清晰度 */
  19. /* text-shadow: 5px 5px 5px red; */
  20. border-radius: 5px;
  21. /* 盒子阴影 左右 上下 清晰度 */
  22. box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.5);
  23. }
  24. </style>
  25. </head>
  26. <body>
  27. <div>
  28. 哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈
  29. </div>
  30. </body>
  31. </html>