Margin left only on small screens in Bootstrap -


How can I give just 20 pixels margins on a byte to bootstrap in small screens?

  & lt; div class = "row mleft20" & gt; & Lt; / Div & gt;   

Will it apply margins on all screens, is this a way to do this for a small screen, so that I can remove the content from the edge of the screen. Thanks

Use media queries pre:

  @ media all And (max-width: 360px) {.mleft20 {margin-left: 20px; }}   

Some helpful links:

Comments

Popular posts from this blog

jsp - No mapping found for HTTP request with URI with annotation config Spring MVC and Jetty -

c# - Split String between 2 substrings without removing delimiters -

asp.net - Procedure or function "Procedure name" expects a parameter "Param name" which was not supplied occurs rarely -