Glubase - share your knowledge


All / Computers / Programming / CSS





  • View Command

CSS Reference

CSS padding-bottom definition

Browser supportInfo
IEFFOpSaf

VersionDepr.

Type:

Syntax

padding-bottom: <length> | <percentage>

Description

The padding-bottom reference specifies the padding at the bottom of the table.

Example

[Try this example yourself]
<style type="text/css">
td.padding1 
{
  padding-bottom: 30px;
}

</style>

<table border="1">
  <tr>
    <td class="padding1">
      This cell has 30 pixels padding on the bottom.
    </td>
  </tr>
</table>

Output

This cell has 30 pixels padding on the bottom.
  • Comments

No comments added.