Notes: Twimba - A Twitter Clone
textarea: A multiline input field
<textarea
placeholder="Ask me anything!"
id="chat-input"></textarea>
<!-- CSS -->
textarea{
width: 239px;
height: 50px;
margin: 0px;
padding: 5px;
resize: none; // to stop users from re...
codelady.hashnode.dev2 min read