3_文本样式.html 729 B

12345678910111213141516171819202122232425262728293031
  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: aqua;
  13. /* 文本阴影 左右 上下 清晰度 颜色 */
  14. text-shadow: 5px 5px 5px red;
  15. overflow: hidden;
  16. white-space: nowrap ;
  17. /* 文本溢出... */
  18. text-overflow: ellipsis;
  19. border-radius: 5px;
  20. box-shadow: 2px 15px 30px rgb(0,0,0,0.5)
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div id="div1">
  26. hahahahhaahhahahahhahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
  27. </div>
  28. </body>
  29. </html>