목표 : 사용자가 정보를 입력하는 부분 프로젝트에서 입력을 설정하려고합니다. 현재 나는 가장 왼쪽 버블의 입력 레이블 뒤에 두 개의 텍스트 입력 버블이 뒤따라야합니다.h1 요소와 입력 요소를 수직으로 가운데에 맞추는 데 문제가 있습니다.
문제점 : 입력란에 약 5 픽셀 크기의 거품이 표시되어있어이를 교정하는 방법을 찾을 수 없습니다.
Notes : 나는 HTML/CSS에 상당히 익숙하며 완전히 독학을하고 있기 때문에 내가하려고하는 것을 할 수있는 더 좋은 방법이 있다면 나에게 알려 달라. 벨로 나에게 5px 문제를 해결하기 위해 문제
.inputConatiner {
height: 75px;
}
.textContainer {
height: 75px;
width: 500px;
display: inline-block;
}
input[type="text"] {
border: 0px solid;
border-radius: 20px;
background-color: rgb(230, 230, 230);
padding-top: 13px;
padding-left: 10px;
padding-bottom: 13px;
}
.label {
width: 270px;
height: 40px;
font-family: "Nunito Sans";
font-size: 30px;
display: inline-block;
background-color: rgb(104, 255, 144);
border-radius: 20px;
text-align: center;
}
input {
width: 200px;
}
<head>
<title>Side Project</title>
<link href="https://fonts.googleapis.com/css?family=Nunito+Sans" rel="stylesheet">
</head>
<body>
<form method="post" action="#" name="getStudentInfo">
<div class="inputConatiner">
<h1 class="label">Enter Your Name</h1>
<div class="textContainer">
<input type="text" placeholder="First" required />
<input type="text" placeholder="Last" required />
</div>
</div>
<div class="inputConatiner">
<h1 class="label">1A Class</h1>
<input type="text" placeholder="Class" required />
<input type="text" placeholder="Teacher" required />
</div>
</form>
</body>