How Do I Make A Sub Sub Menu With Css?
http://i.imgur.com/DbMCI.jpg http://i.imgur.com/i9r6N.jpg Please see image above, what I want to do is push 'gloves' and 'boots' tab to the left of 'blah UGG' I tried to set the su
Solution 1:
You might want to consider changing the float: left;
to float: right
:
.cfulli{
float:right;
margin: 0;
padding: 0;
list-style:none;
font-family:"open sans", sans-serif;
}
Solution 2:
You don't need all those nested tags and clearfixes. Look at this codepen.
Whenever you have floated elements, use overflow: hidden
on their parent. This makes the parent fit its children's content.
Post a Comment for "How Do I Make A Sub Sub Menu With Css?"