0
나는 다음과 같은 HTML5와 CSS 코드를 가지고 : 섹션 입력 태그의 폭이 동일하지만CSS 폭
section {
width: 200px;
background-color: blue;
}
input {
display:block;
margin-bottom: 10px;
width: 200px;
}
input[type=submit] {
width:100px;
margin: 0 auto 0 auto;
}
<section>
<form>
<input type="text" placeholder="Regular text here!" />
<input type="number" placeholder="This is a number" />
<input type="tel" placeholder="Your phone here."/>
<input type="email" placeholder="Your email here." />
<input type="submit" />
</form>
</section>
을 (200 픽셀) 파란색을 섹션 배경의 색이 입력을 완전히 포함하지 않습니다. 왜 그런 일이 일어나는거야?
이 속성의 사용은 얼마나 흔한가? 그것은 CSS 리셋에 넣어하는 것이 좋습니다? –
@ PedroPinheiro - 매우 일반적이며 예, 좋습니다. –