12345678910111213141516171819202122232425262728293031 |
- <!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>Document</title>
- <style>
- #div1{
- width: 200px;
- height: 200px;
- background: aqua;
- /* 文本阴影 左右 上下 清晰度 颜色 */
- text-shadow: 5px 5px 5px red;
- overflow: hidden;
- white-space: nowrap ;
- /* 文本溢出... */
- text-overflow: ellipsis;
- border-radius: 5px;
- box-shadow: 2px 15px 30px rgb(0,0,0,0.5)
- }
- </style>
- </head>
- <body>
- <div id="div1">
- hahahahhaahhahahahhahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh
- </div>
- </body>
- </html>
|