On my jsp page, I have a few buttons with the following style:
*.buttonblue {
background-color: #003366;
border-color: #99CCFF;
color: #FFFFFF;
font-family: Verdana,Arial,Helvetica;
font-size: 8pt;
font-weight: bold;
height: 20px;
display: inline;
line-height: 1.2;
text-align: center;
margin-top: 2px;
}*
The buttons appear slightly smaller in Firefox compared to IE6. Since the button size adjusts based on the caption, I'm unable to set a specific size.
I've attempted using width:auto without success. Additionally, when overflow:visible is applied, the buttons in IE shrink slightly.
If you have any solutions, please assist. Thank you.