01.08.2016, 18:01
Hallo anorak
Zwar arbeite ich nicht mit einem Programm für Webdesign, aber dein Wunsch könnte mit dem CSS-Style "overflow" zum Beispiel wie folgt gelöst werden:
[HTML]
<style>
.textbox {
height:320px;
width:90%;
max-width:480px;
margin:1% auto;
padding:1%;
border:1px solid #ccc;
font:1.5em Arial, Helvetica, Serif;
overflow:auto;
}
</style>
[/HTML]
online Beispiel siehe hier
Ich hoffe, dass dir mein html-Code etwas weiter hilft.
Zwar arbeite ich nicht mit einem Programm für Webdesign, aber dein Wunsch könnte mit dem CSS-Style "overflow" zum Beispiel wie folgt gelöst werden:
[HTML]
<style>
.textbox {
height:320px;
width:90%;
max-width:480px;
margin:1% auto;
padding:1%;
border:1px solid #ccc;
font:1.5em Arial, Helvetica, Serif;
overflow:auto;
}
</style>
[/HTML]
online Beispiel siehe hier
Ich hoffe, dass dir mein html-Code etwas weiter hilft.