How do I format <select> tags and <form> tags in HTML/CSS? -


this current layout enter image description here

and trying figure out how have of information "inline" following

enter image description here

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

Popular posts from this blog

How to use SUM() in MySQL for calculated values -

loops - Spock: How to use test data with @Stepwise -