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>