CSS. Применение свойства box-sizing

by Anton Ayupov

HTML

<input type="text" value="" />
<br/>
<select></select>
<br/>
<textarea></textarea>
<br/>
<input type="password" value="" />
<br/>
<input type="file" />

CSS

input, select, textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 200px;
}

input[type="file"] {
    border: 1px solid #000;
}