123456789101112131415161718192021222324252627282930313233 |
- <!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: orange;
- /* overflow: hidden;
- white-space: nowrap; */
- /* 文本溢出 */
- /* text-overflow: ellipsis; */
- /* 文本阴影 左右 上下 清晰度 颜色*/
- /* text-shadow: 5px 5px 5px red; */
- border-radius: 5px;
- box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.5);
-
- }
- </style>
- </head>
- <body>
- <div id="div1">
- 哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈哈哈哈哈哈哈哈哈哈哈啊哈哈
- </div>
- </body>
- </html>
|