Zurb Foundation: margin-top for class string not working

I have two rows stacked, and for the second you need to have margin-top of 50px. But when I add the "extramargin" class for the second DIV and add margin-top: 50px; it has no effect. When I put it in my HTML, it works.

Anyone who knows how to add this extra distance between these two lines?

+4
source share
1 answer

Try it:

.row.extramargin {margin: 50px auto 10px !important;} 
+8
source

All Articles