0
I’d like to know how to center inputs
in the code below.
@foreach ($riscos as $risco)
<tr>
<th class="row-header">{{ $risco->risk}}</th>
@for ($i = 0; $i < 14; $i++)
<td style="text-align: center; vertical-align: middle;">
<form>
<div class="form-group">
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="" style="width: 30px;" text-align="center">
</div>
</form>
</td>
@endfor
@endforeach
It’s getting like this: https://i.imgur.com/u43wdwY.png