Fixed textarea style issue

This commit is contained in:
VatsalOjha 2019-07-01 20:46:28 -04:00
parent dedb615fa7
commit 6cd1ff6d11
2 changed files with 4 additions and 1 deletions

View File

@ -10,7 +10,9 @@
<div id="textboxes" onkeyup="update()">
<!-- Unfortunately having these <textarea>s on one line is actually necessary
to remove a tiny amount of horizontal space between them -->
<textarea id="html" placeholder="HTML" rows="9"></textarea><textarea id="css" placeholder="CSS" rows="9"></textarea><textarea id="javascript" placeholder="JavaScript" rows="9"></textarea>
<textarea id="html" placeholder="HTML" rows="9"></textarea>
<textarea id="css" placeholder="CSS" rows="9"></textarea>
<textarea id="javascript" placeholder="JavaScript" rows="9"></textarea>
</div>
<div id="buttons">

View File

@ -11,6 +11,7 @@ html, body {
#textboxes {
height: 40%;
width: 100%;
font-size: 0px;
}
textarea {