Make textarea conform to container

Add box-sizing: border-box to it (or better yet to everything)

* {
  box-sizing: border-box;
}
1 Like