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; } p { margin: 0 0 3px 0; padding:0; } label { position: absolute; text-align:right; width:130px; } input, textarea { margin-left: 140px; } label.check, label.radio { position:relative; text-align:left; } </style> </head> <body> <div align="center"> <form> <fieldset> <legend>Fill Out Form</legend> <p> <label for="name">Your Name:</label> <input type="text" name="name" id="name" /> </p> <p> <label for="email">Email:</label> <input type="text" name="email" id="email" /> </p> <p> <input type="checkbox" name="subscribe" id="subscribe" /> <label for="subscribe" class="check">Subscribe</label> </p> <p> <input type="submit" value="Submit" /> </p> </fieldset> </form> </div> </body> </html>
This paste will be private.
From the Design Piracy series on my blog: