1234567891011121314151617181920212223242526272829303132 |
- <!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: pink;
- /* 强制不换行 */
- white-space: nowrap;
- /* 文本溢出 ... */
- overflow: hidden;
- text-overflow: ellipsis;
- /* 水平 垂直 阴影的距离 颜色 */
- text-shadow: 5px 5px 5px red;
- border-radius: 10px;
- box-shadow: 2px 10px 30px rgb(0, 0, 0,0.5);
- }
- </style>
- </head>
- <body>
- <div id="div1">
- 哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈
- </div>
- </body>
- </html>
|