123456789101112131415161718192021222324252627282930313233343536 |
- <!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>
- div{
- width: 200px;
- height: 200px;
- background: aqua;
- /* 强制不换行 */
- white-space: nowrap;
- overflow: hidden;
- /* 文本溢出 */
- text-overflow: ellipsis;
- /* 文本阴影 左右 上下 清晰度 */
- /* text-shadow: 5px 5px 5px red; */
- border-radius: 5px;
- /* 盒子阴影 左右 上下 清晰度 */
- box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.5);
- }
- </style>
- </head>
- <body>
- <div>
- 哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈
- </div>
- </body>
- </html>
|