웹 표준/CSS3
Full width (100%) inputs & textareas with padding
Doworld - a.k.a 여리
2015. 10. 16. 19:24
Full width (100%) inputs & textareas with padding
input, textarea {
width: 100%;
padding: 0.5em;
box-sizing: border-box; /* Opera/IE 8+ */
-webkit-box-sizing: border-box; /* Safari, Chrome et al */
-moz-box-sizing: border-box; /* Firefox */
}