If you look at this link you will see that the inputs are not at the same line.
How can i make that the inputs are at the same line with css
How can i make that the inputs are at the same line with css
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<style type="text/css">
.inputRow {
clear: left;
}
.inputRowLabel {
width: 10em;
float: left;
}
.inputRowField {
width: 10em;
float: left;
}
</style>
<div class="inputRow">
<span class="inputRowLabel">
<label for="someField">This is field 1</label>
</span>
<span class="inputRowField">
<input type="text" id="someField" />
</span>
</div>