mirror of
https://github.com/jstrieb/urlpages.git
synced 2025-03-15 13:04:33 +01:00
Fixed textarea style issue
This commit is contained in:
parent
dedb615fa7
commit
6cd1ff6d11
2 changed files with 4 additions and 1 deletions
editor
|
@ -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">
|
||||
|
|
|
@ -11,6 +11,7 @@ html, body {
|
|||
#textboxes {
|
||||
height: 40%;
|
||||
width: 100%;
|
||||
font-size: 0px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
|
Loading…
Add table
Reference in a new issue