Code:
Details:
Solution:
You can achieve this by adding the CSS property `display: flex` to the parent element that wraps both the `textarea` and the `button`, and assign `flex-direction: column`, which will make the children elements aligned vertically one after another. Here is the modified code for you:
Limit: 0 / 200
With this modification, the `textarea` will take up all the remaining space, while `div` containing the `p` and the `button` will be aligned to the bottom.
Comments:
Login to leave your comments!