I'm using the column-count
css but when the single column is divided into three columns it's heading is on first column and the rest in another column
#xmap{
-moz-column-count: 3;
-webkit-column-count: 3;
column-count: 3;
}
Question: Can I force to break from heading? Here in my fiddle I want headermenu to shift it from first to second column with css only?(without touching markup)
I have another choice to use nth-child()
demo
But this creates the space above of footer-menu
. How can I truncate that space?