Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 432 Bytes

css-textarea-width.md

File metadata and controls

15 lines (11 loc) · 432 Bytes

Textarea Width

I noticed that the actual width of textarea is longer than the container. I found a solution on stackoverflow, below is the code

.boxsizingBorder {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

Css is quite odd