TD height
Moderator: General Moderators
- n00b Saibot
- DevNet Resident
- Posts: 1452
- Joined: Fri Dec 24, 2004 2:59 am
- Location: Lucknow, UP, India
- Contact:
Code: Select all
<td style="height:100px">Height is set to 100px</td>setting a height in a row doesn't validate with w3cs HTML validator... but it works in IE
(haven't tried it in any other browser)
You can set a table cells height to any size you wish using <td height="100">.
This will give you a 100 pixel tall table cell. HOWEVER, if any content inside of that table cell (or other table cells in that row) exceed 100 pixels in height, then your table cell would be stretched larger than 100 pixels. For control over that you could use <td style="height: 100px; overflow: auto;">..... adjusting the overflow as you need.
You can set a table cells height to any size you wish using <td height="100">.
This will give you a 100 pixel tall table cell. HOWEVER, if any content inside of that table cell (or other table cells in that row) exceed 100 pixels in height, then your table cell would be stretched larger than 100 pixels. For control over that you could use <td style="height: 100px; overflow: auto;">..... adjusting the overflow as you need.
Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.