20.1k views
1 vote
_______________ may be indicated to assure the table padding is fixed to the table to prevent pad slippage"

User Suresh Ram
by
7.9k points

1 Answer

3 votes

Final answer:

The CSS property table-layout: fixed can be used to assure the table padding is fixed to the table and prevent pad slippage.

Step-by-step explanation:

To assure the table padding is fixed to the table to prevent pad slippage, the CSS property table-layout: fixed can be used. This property sets the table layout algorithm to fixed, which means that the table cells will have a fixed width and height specified by the CSS rules, and the content inside the cells will not affect their size.

For example:

<table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
</table>

User Aaswad Satpute
by
8.4k points