i am trying to create to divs
width the outer container set to 1000px
and the inner left and right container to 50%
each.
Now i have used this code
.leftNav {
@include span-columns( 5 of 10);
background-color:silver;
color:white;
}
.rightNav {
@include span-columns( 5 of 10);
background-color:silver;
color:white;
}
Now somehow if i don't put anything on left nav
the right nav
takes full 100% width.
How can i set the leftnav
or rightnav
to maintain at least 50% width even if they are empty?
thanks.