til

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