Hello, Here's another problem I am struggling with ...
I have a menu that consists of a DIV with anchors in it.
HTML Example:
-------------
<DIV class="Menu">
<A class="MenuItem" href="">Menu Item 1</A>
<A class="MenuItem" href="">Menu Item 2</A>
</DIV>
Styles:
-------
DIV.Menu
{
width: 20%;
text-align: center;
}
A.MenuItem
{
width: 150px;
display: block;
text-align: left;
}
In IE, I get a menu with centered menu-items that are aligned left.
In mozilla, I get a menu with everything aligned left.
I guess that Mozilla doesn't allow a text-align center to align block elements within a div ...
How can I do this?
Thanks