Merge pull request #12 from VatsalOjha/master

Move textareas onto different lines
This commit is contained in:
Jacob Strieb 2019-07-01 18:31:39 -07:00 committed by GitHub
commit a2cb2502d1
2 changed files with 4 additions and 3 deletions

View File

@ -8,9 +8,9 @@
<body onload="initialize()">
<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 {