Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html lang="en"> <head> <title>Learn CSS</title> </head> <body> <h1>The background-repeat Property</h1> <p>this will be repeated horizontally</p> </body> </html>
body { background-image: url("img/cat.jpg"); background-color: #cccccc; background-repeat: repeat-x; color: white; }
//Javascript