DEV Community

Discussion on: How to put 4 textarea side by side to fit page?

Collapse
 
sabbin profile image
Sabin Pandelovitch

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 property

Collapse
 
xanderyzwich profile image
Corey McCarty

I'd probably class them together to make it easy as well

Collapse
 
sabbin profile image
Sabin Pandelovitch

Indeed, personally I would use flexbox but it would require to understand it