Forum Moderators: open
Please someone explain me that behavior!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
</head>
<body>
<form>
<select style="height:50px;">
<option>abc</option>
</select>
<input type="submit" value="abc" style="height:50px;" />
</form>
</body>
</html>
It is perfect in Opera.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<form>
<select style="height:50px; vertical-align: text-bottom; ">
<option>abc</option>
</select>
<input type="submit" value="abc" style="height:50px; vertical-align: text-bottom;" />
</form>
</body>
</html>