Reputation: 27
Can you help me to understand the idea of changing the page style on resize it,as if we use another style that suits with the size of the window and make you see all page content. I see that in some website like this page I check it's css and script ,I think the idea is in css ,but I don't sure and I wana know if there are any jquery effectiveness or what css properties effectiveness to do that. Thanks for help
Upvotes: 2
Views: 970
Reputation: 1815
You need so-called responsive theme (i.e., a theme that looks great on desktops, tablet devices, and mobile devices). Most of Bootstrap themes are responsive. See at Start Bootstrap.
Upvotes: 1
Reputation: 4695
You can use CSS media screen. To do that just view these links: http://www.w3schools.com/css/css_mediatypes.asp
What does @media screen and (max-width: 1024px) mean in CSS?
And also you can use twitter bootstrap.
Upvotes: 2