Ich versuche gerade einen DIV (overflow:auto;) innerhalb eines Divs (ebenfalls overflow:auto;) so einzustellen, dass dieses nur bis zur Fensterbreite geht und NICHT WEITER.
Wie kriege ich das hin?
{foreach from=$tabs item=tab}
<ul class="tabs">
<li class="tab"><div id="tab{$tab.id}" class="tab{$tab.sel}" onClick="{$tab.onClick}">{$tab.title}</div></li>
</ul>
{/foreach}<br><br>
<table class="login" width="640px">
<tr>
<td>
<div style="overflow: auto; width: 100%; height: 100%;">
<img src="{$imgfile}" alt="{$imgtitle}">
</div>
</td>
</tr>
<tr>
<td>
<table class="cpres" width="100%">
<tr class="cpres" height="20px">
<th class="cpres" colspan=3><b class="album_pres">{$imgtitle}</b></td>
</tr>
<tr class="cpres" height="20px">
<td class="cpres" width="20%">Hochgeladen am:</td>
<td class="cpres" width="55%">{$imgploaded}</td>
</tr>
<tr class="cpres">
<td class="cpres">Beschreibung:</td>
<td class="cpres">{$imgdescr}</td>
</tr>
<tr class="cpres">
<td class="cpres">Kommentare:</td>
<td class="cpres">Not implemented yet.</td>
</tr>
</table>
</td>
</tr>
</table>
Danke im Vorraus!