1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| .input, .textarea { border: 1px solid #ccc; font-family: inherit; font-size: inherit; padding: 1px 6px; }
.input-wrap { position: relative; } .input-wrap .input { position: absolute; width: 100%; left: 0; } .width-machine { padding: 0 1rem; }
.textarea { display: block; width: 100%; overflow: hidden; resize: both; min-height: 40px; line-height: 20px; }
.textarea[contenteditable]:empty::before { content: "Placeholder still possible"; color: gray; }
* { box-sizing: border-box; } body { font-family: "Heebo", sans-serif; max-width: 500px; margin: 0 auto; padding: 1rem; }
p strong { display: block; } h1 { border-bottom: 5px solid #9ccc65; } h2 { border-bottom: 2px solid #c5e1a5; }
|