How do I format <select> tags and <form> tags in HTML/CSS? -
and trying figure out how have of information "inline" following
i've never worked forms before have no idea how format it, tried googling couldn't come useful information because every example had tag instead of multiple example
you can use without table
this.
li label { float: left; width: 100px; margin-right: 10px; font-size: 14px; } li { list-style: none; margin-bottom: 5px; }
<ul> <li><label for="name">first name:</label></li> <li><input type="text" name="name" placeholder="name"> </ul>
Comments
Post a Comment