css - How can I stack divs on float? -
site: http://bit.ly/13nl8jv
demo: http://jsfiddle.net/bbckp/
brief: trying current programs float under signature programs no luck. of columns in footer have css:
float: left; width: 29%;
the columns dynamic can't wrap signature , current in it's own div (i can hack js)...clarrification - i'm referring menus in footer.
any thoughts how can css?
you can tweak element so. leave hole used be, that's relative positioning does.
.item-130 { position:relative; left:-180px; top:25px }
alternately can set parent ul position:relative
, , use absolute positioning:
.nav-pills { position:relative; } .item-130 { position:absolute; left:0px; top:25px }
Comments
Post a Comment