HTML and CSS Reference
In-Depth Information
How about the #menu container? What does F2fw
adds to a #menu ?
See below what F2fw adds to it.
#menu {
float:right;
}
#menu ul {
padding:0;
margin:0;
}
#menu ul li {
list-style-position:outside;
list-style-type:none;
margin:0 10px 0 0;
display:block;
float:left;
}
#menu ul li:last-of-type {
margin-right:0;
}
#menu
Positions #menu on the
right with float:right;
Makes inner ul display as a
horizontal menu, with the
li being floated on the left.
 
Search WWH ::




Custom Search