Margin appears on both sizes when using css framework skeleton
I just installed skeleton frames to try this out. I am using 16 columns layout and I can see that I have left and right margins when I test it on an iphone.
does anyone have an idea?
thank
+3
tzvika ofek
source
to share
1 answer
You can set column margins for phones and other devices using CSS media queries .
The skeleton uses margin-left: 10px and margin-right: 10px on columns by default, so ....
Typical example of setting margins using Skeleton for iPhone 5:
@media (max-width: 1136px) { .column, .columns {margin:0;} }
0
Simon hayter
source
to share