InterviewSolution
Saved Bookmarks
| 1. |
Which of the following position element is not affected by the top, bottom, left etc. property?(a) static(b) clip(c) relative(d) absolute |
|
Answer» Correct answer is (a) static To explain I would say: HTML elements are positioned static by default, static positioned elements are not affected by top, bottom, left and right properties. An element with position: static; is not positioned in any social way, it is always positioned according to the normal flow of the page. |
|