There is an input description box on my website that has a specific height and width, along with its own unique style. Currently, the text within the box is centered, but I would like it to align to the top left corner.
Here is the HTML code:
<input id="eventDescriptionInput" placeholder="Description" />
And here is the CSS code:
#eventDescriptionInput {
padding: 10px;
width: 100%;
height: 200px;
box-sizing: border-box;
margin-bottom: 25px;
border-radius: 3px;
outline: none;
border: none;
box-shadow: 0px 0px 3px gray;
}