Forum Moderators: not2easy
Netscape, Opera, Mozilla et al, all have different looks/sizes to the buttons not to mention IE6/winME is different from IE6/winXP.
Can CSS offer some means of controlling the look of the buttons cross browser?
Thanks
If so... check here: [webmasterworld.com...]
CSS
input.grn {
background:#699;
color:#000;
font:12px verdana, arial, sans-serif;
border:1px solid #000;
border-right:1px solid #000;
border-bottom:1px solid #000;
}
HTML
<table width="600" border="0" cellpadding="0" cellspacing="9" align="center"><tr><td width="175" valign="top">
<form action="/my_page.html" method="get">
<input type="submit" value="Ceck Out" class="grn"></form></td>
<td width="200" valign="top">
<form action="https://my_domain.php" method="get">
<input type="hidden" name="sessid" value="<?php echo $mysessid?>">
<input type="submit" value="More Check Out Stuff" class="grn">
</form></td>
<td width="225" valign="top">
<form action="my_page.php" method="get">
<input type="submit" value="Lots More Check Out Stuff" class="grn">
</form></td></tr>
</table>
Extra space is being added on each side of the text within the input buttons. This is what I'd like to remove.