[Solved] Form inline CSS without using any CSS library [closed]


Yes it is possible try like this

<div style="width:100%">
   <div style="width:20%; float:left;">
       <label>Name</label>
   </div>
   <div style="width:80%; float:left;">
      <input type="text">
   </div>
</div>

solved Form inline CSS without using any CSS library [closed]