Answers for "create block inside table html"

1

create block inside table html

"div" tag can not be used above "tr" tag. Instead you can use "tbody" tag to 
do your work.
<table>
    <tbody class="green">
        <tr>
            <td>Data</td>
        </tr>
    </tbody>
    <tbody class="blue">
        <tr>
            <td>Data</td>
        </tr>
    </tbody>
</table>
Posted by: Guest on October-18-2020

Code answers related to "create block inside table html"

Browse Popular Code Answers by Language