css form basic setup

PHOTO EMBED

Thu Aug 18 2022 20:20:09 GMT+0000 (Coordinated Universal Time)

Saved by @webnature #css

button,
input,
select,
textarea {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

//dont show scrollbar when content is too long
textarea {
  overflow: auto;
}
content_copyCOPY