To center something something using margin, the element you want to center must have a width less than 100%. Non-floated block elements, by default, have a width of 100%. On your #dropmenu, try:
Code:
margin: 0 auto;
width: 72em; /* you may have to change this width */
__________________
The interlocking pieces of web development: usability, performance, accessibility, and standards.
|