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:
link: http://i47.tinypic.com/2eouv54.png
but when resize browser window enough, end this:

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
Post a Comment