Question:You are designing a web site and need to set the background image for all the web pages. You want a small background image to repeat and fill up the whole background. Which of the following body styles is ideal for this?
A
body{ background: url(/images/bg.gif); repeat: repeat-x }B
body{ background: url(/images/bg.gif); repeat: repeat-y }C
body{ background-image: url(/images/bg.gif); background -repeat: no-repeat }D
body { background-image: url(images/bg.gif);background-repeat: repeat}
+ AnswerB
+ Report