Sample form:
There's no padding top in IE8. Any cross-browser solution?Code:<!DOCTYPE html> <html> <head> <title></title> <style> fieldset {padding: 15px;} </style> </head> <body> <form> <fieldset> <legend>Form</legend> <p> <label for="name">Name </label><input id="name" type="text"> </p> <p> <label for="email">Email </label><input id="email" type="text"> </p> </fieldset> </form> </body> </html>
Bookmarks