Make Resvonsive Layout With CSS3

Smartphone revolution brings new features to the web development, it is time to change your website design into a responsive design instead of maintaining a separate mobile version . Responsive design will automatically adjust itself based on the screen size of the media devices. This post explain you how to use CSS 3 @media property and working with Internet Explorer using Modernizr. Download Script Live Demo Try live demo with different screen resolutions. Step 1 Web layout divided into three horizontal parts are Hearder , Main and Footer . Here Header div divided into two horizontal parts such as Logo and Nav and the same way Main div divided into Article and Sidebar . HTML Code <div id=" header "> 1 Header <div id=" logo ">logo</div> <div id=" nav ">links</div> </div> <div id=" main "> 2 Main <div id=" article ">article</div> <div id=" sidebar "...