Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Form input layout css (See related posts)

// description of your code here

label
{
    width:250px;
    float:left;
    clear:both;
}
            <form action="contact.php" method="POST">
                <ul id="contact">
                    <li>
                        <label for="name">Name:</label>
                        <input type="text" name="name" />
                    </li>
                    <li>

                        <label for="email">Email:</label>
                        <input type="text" name="email" />
                    </li>
                    <li>
                        <label for="message">Message:</label>
                        <textarea name="message"></textarea>
                    </li>

                    <li>
                        <input type="Submit" name="send" value="Send" />
                    </li>
                </ul>
            </form>


You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts