Normally, textareas are just boring old oblongs:
But is it possible to make a textarea shaped like the introduction to Star Wars?
**Note: Inspired by SO #20734620: unusual shape of a textarea—see comments.*
Update: Thanks to Niet the Dark Absol I was able to get it working. Just need to play with the font and color.
textarea {
width:600px;
height:500px;
transform:perspective(1000px) rotateX(45deg);
display:block;
margin:0 auto;
text-align: center;
line-height:200%;
color: yellow;
background-color: black;
font-size: 1.75em;
}
Try a 3D transform:
#starwarstextareaofawesome {
width:600px;
height:500px;
transform:perspective(1000px) rotateX(45deg);
}
Demo
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With