I trying to create a table cell <td>
with an overflow but it doesn't work...
There's my CSS code:
td.blog_content
{
max-height: 50px;
overflow: auto;
width: 360px;
text-align: left;
padding: 2px;
}
And my HTML:
<td class="blog_content"><?php echo $blog['content']; ?></td>
It would create a simple box with a scrollbar if the text is too long...