Hi all
I have a simple contact form here
http://www.ttmt.org.uk/forum/contact.html
In all browser Mac and PC apart from Safari the text the message textarea is a different size and font from the other input text areas.
How do I fix this ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Form</title>
<style type="text/css" media="screen">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
:focus {
outline: 0;
}
ins {
text-decoration: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
html, body{
font-size:100%;
font-family:"Helvetica Neue", Helvetica, sans-serif;
}
form{
width:270px;
float:left;
margin:30px;
}
form label{
color:#333;
font-size:.9em;
margin-bottom:3px;
}
form label,
form input{
float:left;
}
form input,
form textarea{
background:#eee;
width:100%;
border-width:0;
padding:.35em .2em;
margin-bottom:8px;
font-size:.9em;
}
form textarea{
height:150px;
}
form input:focus,
form textarea:focus{
background:#ddd;
}
</style>
</head>
<body>
<form action="" method="post">
<label for="name">Name:</label>
<input type="text" name="name:" value="" id="name">
<label for="email">Email:</label>
<input type="text" name="email" value="" id="email">
<label for="subject">Subject:</label>
<input type="text" name="subject:" value="" id="subject">
<label for="message">Message:</label>
<textarea row="2" col="20"></textarea>
</form>
</body>
</html>