10

I must create a table cell with a fixed height and width, but with a lot of content; something using overflow: auto. The problem is that I can't use display: block on a table cell (it kind of breaks the table layout) so I tried this:

height: 100px;
overflow: auto;
position: relative;
width: 1280px;

But it's not working. Here is my markup:

        <tr>
            <td colspan="3" style="width: 1280px; overflow:auto;">
                {assign var="latime" value=$agenda|@count}
                {assign var="latime" value=$latime*150}
                <div style="width: 1280px; position: relative; overflow: auto; ">
                    <div style="width: {$latime}px; height: 100px; position:relative;">
                        {assign var="i" value=0}
                        {foreach from=$agenda item=ag}
                            {assign var="img" value=$agenda[$i][3]}
                                &nbsp; &nbsp;<img src="{$img}" id="imag{$i}" onclick='schimbaslidetoti({$i})' />&nbsp; &nbsp;
                            {assign var="i" value=$i+1}     
                        {/foreach}
                    </div>
                </div>
            </td>
        </tr>
TylerH
  • 20,799
  • 66
  • 75
  • 101
zozo
  • 8,230
  • 19
  • 79
  • 134

1 Answers1

41

You can nest a block-level div with the overflow:scroll property set inside the table cell. ie

<td><div style="overflow:scroll;">Content</div></td>
DavW
  • 886
  • 8
  • 11
  • 1
    @YoupTube, `td`s [can contain](https://www.w3.org/TR/html51/single-page.html#the-td-element) [flow content](https://www.w3.org/TR/html51/single-page.html#kinds-of-content-flow-content), which includes `div`s – adam rowe Mar 22 '17 at 12:44