It is a method to build up an entire which can be fit and resposive into any different devices or the screen sizings
The idea of using a -relative units- (e.g.%, em, vh, wh, vmin, vmax) rather than -fixed units- (e.g.inch or pixel) Relative units are depending on the width and height of the device or screen
Highly preferable to use max- or min- in width or height at the media query features. :ok_hand: The default of the media type is ‘screen’.
Don’t also forget to use *Respond.js* to make the media query woking perfectly on IE8 or below this version.
*In order to take the width and height of the browser
Don’t forget to use the Viewport meta tag in your HTML head tag.
One of earliest way to make the block elements stacked together horizentally.
Don’t forget to use the clear method in order to keep the following elements in its original position.
.clearfix::after {
content: "";
clear: both;
display: table;
}