×
×
Correct!
Make the background image repeat only vertically.
<style>
body {
background-image: url("img_tree.png");
background-repeat: repeat-y;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!<style> body { background-image: url("img_tree.png");: ; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |