Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
<html> <head> <title>Sexy Forms</title> <style> fieldset { width:350px; text-align:left; border: 1px solid #ccc; } legend { font-weight: bold; color: #666; } label { text-align:right; margin-right: 10px; font-weight: normal; } </style> </head> <body> <div align="center"> <form> <fieldset> <legend>Fill Out Form</legend> <table cellspacing="0" cellpadding="1" border="0"> <tr> <th width="140" align="right" valign="top"> <label for="name">Your Name:</label></th> <td align="left" valign="middle"> <input type="text" name="name" id="name" /></td> </tr> <tr> <th align="right" valign="top"> <label for="email">Email:</label></th> <td align="left" valign="middle"> <input type="text" name="email" id="email" /></td> </tr> <tr> <th align="right" valign="middle"> </th> <td align="left" valign="middle"> <input type="checkbox" name="subscribe" id="subscribe" /> <label for="subscribe" class="check">Subscribe</label></td> </tr> <tr> <th align="right" valign="middle"> </th> <td align="left" valign="middle"> <input type="submit" value="Submit" /></td> </tr> </table> </fieldset> </form> </div> </body> </html>
This paste will be private.
From the Design Piracy series on my blog: