当前位置 : 主页 > 网页制作 > css >

CSS控制背景样式

来源:互联网 收集:自由互联 发布时间:2021-06-13
1 !DOCTYPE html 2 html 3 head lang="en" 4 meta charset="UTF-8" 5 title/title 6 style type="text/css" 7 8 div { 9 width : 300px ; 10 height : 200px ; 11 border : solid 2px ; 12 background-color : antiquewhite ; 13 background-repeat : repeat-
 1 <!DOCTYPE html>
 2 <html>
 3 <head lang="en">
 4     <meta charset="UTF-8">
 5     <title></title>
 6     <style type="text/css">
 7 
 8         div{
 9             width: 300px;
10             height: 200px;
11             border: solid 2px;
12             background-color: antiquewhite;
13             background-repeat: repeat-x;
14             background-attachment: fixed;
15             background-position-x: ;
16         }
17     </style>
18 </head>
19 <body>
20 <div></div>
21 </body>
22 </html>
网友评论