I want to place id 1
and id 2
next to eachother and the <b>
in both of the divs above the input
element.
<div>
<div id="1 " style = "float:left; clear:both">
<b style ="color: #444444" >Date</b>
<input class="duedatetextbox" type="text" placeholder="Enter date" tabindex="101">
</div>
<div id="2" style = "float:left; clear:both;padding-left:80px;">
<b style ="color: #444444" >Time</b>
<input class="duedatetextbox" type="text" placeholder="Enter time" tabindex="102">
</div>
</div>
Thank you in advance!