I have a site that has a box with some text in it. When I view it in Chrome, its right at the top, so I have put a padding-top
css rule in to element which lines it up correctly on Chrome, but on Firefox, the text is initially centred correctly, and the css rule ruins that. How can I code it (preferably without a browser detector on the server) so that it pads down the text in chrome, but not in firefox?
EDIT:
.footer input[type="submit"]
{
border: none;
color: #FFFFFF;
font-size: 16px;
height: 35px;
padding: 9px 10px;
margin: 0px;
}