style output textarea as class

This commit is contained in:
jetsparrow 2025-09-16 01:35:49 +03:00
parent ccc440c0d1
commit 9716f2c5b1
2 changed files with 4 additions and 3 deletions

View File

@ -32,5 +32,5 @@
<progress class="hidden" id="progressbar"> </progress> <progress class="hidden" id="progressbar"> </progress>
<br> <br>
<textarea readonly id="output_text"> </textarea> <textarea readonly class="output" id="output_text"> </textarea>
</body> </body>

View File

@ -15,9 +15,10 @@ input[type="file"]{
field-sizing: content; field-sizing: content;
} }
textarea#output_text textarea.output
{ {
width: 400px; width: 400px;
height: 400px; height: 400px;
overflow-y: scroll;
resize: none;
} }