1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box {
- width: 200px;
- height: 200px;
- background: #ff0;
- margin: 100px auto;
- /*
- box-shadow:左右 上下 阴影模糊程度 颜色;
- */
- box-shadow: 100px 140px 10px #f00;
- }
- p {
- font-size: 40px;
- font-weight: bold;
- color: blue;
- /*
- text-shadow:左右 上下 阴影模糊程度 颜色;
- */
- text-shadow: 100px 20px 3px #ff0;
- }
- #max {
- width: 300px;
- height: 300px;
- border:1px solid #000;
- margin: 100px auto;
- /* 超出一行显示省略号 */
- /* 移除隐藏 */
- overflow: hidden;
- /* 强制不换行 */
- white-space: nowrap;
- /* 显示省略号 */
- text-overflow: ellipsis;
- }
- </style>
- </head>
- <body>
- <div id="box"></div>
- <p>我是一个文字</p>
- <div id="max">
- 我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字
- 我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字我是一段文字
- </div>
- </body>
- </html>
|