Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Overflow attribute on <td> does not create a scrollbar

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...

like image 309
Frederick Marcoux Avatar asked Feb 05 '12 19:02

Frederick Marcoux


2 Answers

Try wrapping it in a <div>. I'm pretty sure the overflow attribute is not defined for a <td> element, at least in HTML4 it's not.

<td class="blog_content">
    <div><?php echo $blog['content']; ?></div>
</td>

.blog_content div {
    height: 50px;
    max-height: 50px;
    overflow: auto;
}
like image 136
nickb Avatar answered Oct 06 '22 17:10

nickb


Set table-layout: fixed; on the table containing your cells. Alternatively, wrap the contents of each cell in a div and apply the styles to that.

like image 30
Niet the Dark Absol Avatar answered Oct 06 '22 19:10

Niet the Dark Absol