Hi,
I have a web app(ASP.NET 2.0 C#). On my Masterpage, I have a menu control, and I am using a css stylesheet to style the different parts of the menu. For some reason, when I hover over the menu, it jumps a little. I think somehow the borders become larger when I hover over it.
Heres the styling for the whole menu:
.menu
{
width:110%;
height:25px;
border: 1px solid gray;
text-align:center;
}
Heres my style for the StaticHoverStyle:
.staticMenuHover
{
background-color:#CCCCCC;
border-style:solid;
border-color:#888888;
text-decoration: underline;
border-width:thin;
}
I don't know why this is happening, can someone help?
Thanks