Well I have a table that I set up with css. I need to add a note within a few lines, ie it will not be on all lines.
The problem and I'm not getting it, I tried to post the doubt here in another way, but the solution was not very good.
Good follows an image of what I need to do.
Followthehtmlandcsscode:
.tab_dados {
width: 100%;
border-collapse: collapse;
text-align: center;
}
.tab_dados a {
color: #484848;
text-decoration: none;
}
.tab_dados th {
background: #0091FF;
color:#FFFFFF;
font-style: italic;
}
.tab_dados tr {
height: 50px;
border-bottom: 1px solid #D5D5D5;
}
.tab_dados tr:nth-child(odd) {
background: #F7F7F7;
}
.tab_dados tr:nth-child(even) {
background: #FFFFFF;
}
.tab_dados tr:hover {
background: #F1F1F1;
}
tfoot tr td{
border:0;
height: 40px;
}
.tfoot{
width: 100%;
}
<table class="tab_dados">
<tr>
<th>NOME</th>
<th>IDADE</th>
<th>ESTADO</th>
</tr>
<tr>
<td>HUGO</td>
<td>26</td>
<td>MG</td>
</tr>
<tr>
<td>HUGO</td>
<td>26</td>
<td>MG</td>
</tr>
<tr>
<td>HUGO</td>
<td>26</td>
<td>MG</td>
</tr>
</table>