InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is the default positioning elements with CSS?(a) relative(b) static(c) absolute(d) fixed |
|
Answer» The correct option is (b) static Easy explanation: static is the default value and specifies that the element is positioned according to the normal flow of document content (for most Western languages, this is left to right and top to bottom). |
|