Align textarea and button by their bottom
date
Apr 23, 2023
slug
align-textarea-and-button-by-bottom
status
Published
tags
Bugfix
CSS
summary
type
Post
Background
I created a website that contains a
textarea
and a button
. And here are the source codes:Problem
I tried to align the
textarea
and button
by their bottom, but they are baseline alignment by default.
Solution
Adding
vertical-align: bottom
to the textarea
rule can fix that problem: