Green

Monday, October 14, 2013

Any Idea on Responsive Web Design ?

Follow up below guideline for the Responsive web design starter.

1) Include this meta tag in the

2) Add the meida query

3) CCS3 Medai Quer is the trck for the responsive design and add into your css cals.

/* 980px or less */
@media screen and (max-width:980px)
{
#page{widt: 94%;}
#content{width: 65%;}
#siebar{width: 30%;}

}

/* 700px or less */
@media screen and (max-width:700px)
{
#content{width: auto;}
#siebar{width: none;}

}

/* 480px or less */
@media screen and (max-width:480px)
{
header{height: auto;}
h1{font-size: 24px;}
#siebar{display: none;}

}


View the original article here

0 comments:

Post a Comment