InterviewSolution
Saved Bookmarks
| 1. |
Which of the following will take the element out of normal flow?(a) fixed positioning(b) floating elements(c) relative positioning(d) absolute positioningI had been asked this question in a job interview.Origin of the question is Specifying Bullet Point Styles, CSS Image Alignment, ID and Class in section Layout & Images of CSS |
|
Answer» RIGHT option is (B) floating elements Explanation: Floating an ELEMENT allows us to take that element out of normal flow and position it too far left or right of a containing BOX. The floated element becomes block-level element around which other content can flow. |
|