You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Blueprint CSS
I've found a small error that happens when you have a container inside
another container. The last margin isnt removed as expected. The
solution was changing this lines:
.last {
margin-right: 0;
}
You must change his position and leave it after the span-X
declaration, including the span-x>div declaration. You also must
change a bit this line. The result would be:
.last, .last>div {
margin-right: 0;
}
Both the position and adding the ".last>div" class/element is
necessary, but i think the actual ".last" class element is not used as
the margin is asigned not to the tag that has the last class but to
his first level childs (divs).