InterviewSolution
Saved Bookmarks
| 1. |
Which property specifies where the background image is positioned?(a) background-size(b) background-origin(c) background-image(d) background-clip |
|
Answer» Right option is (b) background-origin Easiest explanation: The CSS background-origin property specifies where the background image is positioned. This property takes three different values namely border-box, padding-box, content-box. In content-box the background images start from the upper left corner of the content. |
|