Good afternoon, I have a question here in assembling the form using and assorted.
I have the following table:
<table>
<tr>
<td>Nome:</td>
<td>Senha:</td>
</tr>
<tr>
<td>Código</td>
<td>E-mail</td>
</tr>
<tr>
<td class="campo-grande">Número de RAPSI:</td>
</tr>
and CSS:
table{
margin:0;
padding:0;
}
tr{
display:block;
border:1px solid black;
margin-top:5px;
}
td{
display:inline-block;
border:1px solid black;
width:200px;
}
.campo-grande{
width:400px;
}
What happens is that the "Number of RAPSI" field does not get 400px in width, does anyone know what it is? I do not have much experience with tables, if it helps, it follows codepen