For further actions, you may consider blocking this person and/or reporting abuse
Read next
Step-by-Step Guide to Light/Dark Mode on Bear Blog
Yordi Verkroost -
Transform HTML Table into Card View Using Nothing But CSS
PHPControls -
Best CSS Frameworks to Use in React.js
Mourya Vamsi Modugula -
🌈 CSS Animations: A Beginner’s Guide to Adding Motion to Your Website 🌈
Ashish prajapati -
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