Ask Your Question

Revision history [back]

To include border radius in a table row, you can use the border-radius property in CSS.

Here is an example code snippet:

<table>
  <tr style="border-radius: 5px;">
    <td>Table cell content</td>
    <td>Table cell content</td>
  </tr>
  <tr>
    <td>Table cell content</td>
    <td>Table cell content</td>
  </tr>
</table>

In this example, the first table row has a border radius of 5 pixels applied to it using the border-radius property. This gives it rounded corners. The second table row does not have a border radius applied to it, so it has square corners by default.