html - Change classes fluid layout css -


i have fluid css grid (http://cssgrid.net/)

i designing website, using grid system. although, unsure how change classes when there "not enough room them".

example, have top bar this:

enter image description here link: http://i47.tinypic.com/2eouv54.png

but when resize browser window enough, end this:

enter image description here

as can see, looks messed up!

how can of out fluid layout. mean, how can i, when there isn't enough room buttons , username, them fit? i.e. making new class , place somewhere else.

thanks!

when have that:

aside {float: left; width: 50%; padding: 0 50px; box-sizing: border-box; background: #000;} 

you can add this:

@media screen , (min-device-width : 320px) , (max-device-width : 768px) {    aside {float: none; width: 100%; padding: 0 20px;} } 

first rule applied screen sizes. second rule applied devices width 320px 768px , overwrite existing rules. means change float, width , padding not change e.g. background or box-sizing.


Comments

Popular posts from this blog

jquery - Invalid Assignment Left-Hand Side -

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -