Answers for "align input center bootstrap 4"

0

set textbox into center of div in bootstrap

<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.css" rel="stylesheet" />
<td style="background:#B3AEB5;">
  <div class="form-group text-center">
    <div class="input-group" style="margin:auto;">
      <input type="month" name="p2" value="test">
    </div>
  </div>
</td>
Posted by: Guest on December-07-2020
1

center form group bootstrap

.class {
    margin: 0 auto;
    float: none; //optional
}
Posted by: Guest on May-06-2020

Code answers related to "align input center bootstrap 4"

Browse Popular Code Answers by Language