Guten Morgen! Wie erreiche ich daß ein td fixe "%-Breite" einhält, also die Beite nicht vom Inhalt abhängt, und Scrollbalken nur bei Bedarf angezeigt werden?
<!DOCTYPE html><html lang="de"><head><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>P R E I S L I S T E</title>
<style>
.dt0{ width: 32%;border:1px solid black; /* 3*32% */
max-width: 32%;
overflow: scroll;}
.plz{width: 2%;} /* Platzhalter + 2* 2% = 100% */
</style>
</head>
<body style="width:100%;">
<table style="width:98%; height:50em; border-collapse: collapse;">
<tr>
<td class="dt0">xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx1<br>z
</td>
<td class="plz">
</td>
<td class="dt0">yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
</td>
<td class="plz">
</td>
<td class="dt0">
</td>
</tr>
</table>
</body>
</html>