InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not the value for background-repeat property?(a) repeat-y(b) repeat-x(c) no-repeat(d) fixed |
|
Answer» The correct answer is (d) fixed Explanation: Background-repeat property can have four values i.e. repeat, repeat-x, repeat-y and no -repeat. The background image is repeated both horizontally and vertically by setting the value repeat, repeat-x repeats the image horizontally only. |
|