2_文本样式.html 850 B

123456789101112131415161718192021222324252627282930313233
  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. #div1{
  10. width: 200px;
  11. height: 200px;
  12. background: orange;
  13. /* overflow: hidden;
  14. white-space: nowrap; */
  15. /* 文本溢出 */
  16. /* text-overflow: ellipsis; */
  17. /* 文本阴影 左右 上下 清晰度 颜色*/
  18. /* text-shadow: 5px 5px 5px red; */
  19. border-radius: 5px;
  20. box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.5);
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="div1">
  26. 哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈
  27. </div>
  28. </body>
  29. </html>