Answers for "put text behind eachother with label tags css"

CSS
2

putting label on top of input css

input, label {
    display:block;
}
Posted by: Guest on May-21-2020
0

how to add an input next to each other

<form action="" class="form-inline">
    <div class="form-group">
        <input type="text" class="form-control" placeholder="MinVal">
    </div>
    <div class="form-group">    
         <input type="text" class="form-control" placeholder="MaxVal">   
    </div>
</form>
Posted by: Guest on May-13-2020

Browse Popular Code Answers by Language