css - How to put Logo & navigation in one line -
i have css , html code has 2 sections in header: 1 logo , other 1 navigation. wanted put both in same line saves space , looks better. can guide me on how can that?
- set width logo example 100px;
float:left;
logo- remove
width:100%;
,float:left;
#nav
- add
overflow:hidden;
#nav
- add
clear:left;
#content
live example: http://jsbin.com/eyozo
Comments
Post a Comment