For further actions, you may consider blocking this person and/or reporting abuse
Read next

Navigating the Financial Landscape: Open Source Project Financial Tools
Rachel Duncan -

"Revolutionizing Autonomous Driving: The Power of Module-Directed Testing"
Gilles Hamelink -

Navigating the Complex Terrain of Sustainable Funding for Open Source
Zhang Wei -

Cross-Site Scripting (XSS) Overview
Aviral Srivastava -
Top comments (8)
In my opinion, the best way would be:
a container with
display: flex
every textarea with
flex-grow: 1
This is the answer!
no
The same way you put 4 div side by side. The simplest way is to set a width equal to 25% and give each of them float css prop with left as value... Also the container should have
clear:both
propertyI'd probably class them together to make it easy as well
Indeed, personally I would use flexbox but it would require to understand it
Though I find Mariana's answer the best, one other thing you might do is use a
display: grid;
on the parent element and then create two columns of the same width withtemplate-columns: 1fr 1fr 1fr 1fr;
Container with
display: flex
should be enough