Click here to Skip to main content
15,888,461 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hello,

I have some problem, when i development website.

How can i use responsive web design in web site created by me.

my website are not perfect view-able in all size like desktop, laptop, tab, mobile etc..

so, any suggest for that.



Thanks.
Posted
Comments
pradiprenushe 27-Jul-13 12:55pm    
Look this link for basic idea.
http://www.slideshare.net/kongkannika/responsive-web-design-with-html5-and-css3-15764282

& if you really doing it is not just little thing that somebody will provide. You need to google it & study.
Sergey Alexandrovich Kryukov 28-Jul-13 0:37am    
We cannot see your side to give any advice. The question makes no sense, because essentially it says: "help me to learn Web design".
—SA

Use Twitter Bootstrap. Its easy to use and works awesomely through out different devices/browsers.
 
Share this answer
 
v3
Responsive web design (RWD) is a web design approach aimed at making websites change itself to provide an optimal viewing experience—easy reading and navigation with a minimum of resizing, panning, and scrolling—across a wide range of devices (from mobile phones to desktop computer monitors).

components that requires to build responsive website.

1)View port
<meta name="viewport" content="width=device-width, initial-scale=1.0">


2)css media queries


@media only screen and (min-width : 320px) and (max-width : 480px) {
/* mobile Styles */
}


@media only screen and (min-width : 481px) and (max-width : 800px) {
/*Tab Styles */
}


@media only screen and (min-width : 801px) and (max-width : 1024px) {
/*Desktops Styles */
}

Check it out this link
http://waybloggy.blogspot.com/2014/09/components-required-for-responsive-web.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900