12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!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:1000px;
- height:600px;
- /* 背景 复合属性 */
- /* background: red; */
- background-color: red;
- /* 背景图片 url(路径) */
- background-image: url(images/img02.jpeg);
- /* 背景图片重复 默认 repeat重复|no-reapeat 不重复 */
- background-repeat:no-repeat ;
- /* 背景图片位置 默认是0 0 第一个值水平 第二个值垂直
- 水平 left center right
- 垂直 top center bottom
- */
- background-position:center center;
- }
- </style>
- </head>
- <body>
- <div id="div1">
- </div>
-
- </body>
- </html>
|