[CSS] 폼 스타일 주기

정은아·2022년 9월 20일
0
<!DOCTYPE html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <title>폼 스타일 주기</title>
  <style>
  	input[type=text] { /*text 창에만 적용*/
			color : red;
			}

	input:hover, textarea:hover { /*마우스 올라올 때*/
		background : #cccc66;
		}

	input[type=text]:focus, input[type=email]:focus { /*포커스 받을 때*/
	font-size : 120%;
	}

	label {
			display : block; /*새 라인에서 시작*/
			padding : 5px;
		  }

	label span { 
				display : inline-block;
				width : 90px;
				text-align : right;
				padding : 10px;
				}

	</style>
 </head>
 <body>
  <h3> CONTACT US</h3>
  <hr>
  <form>
	<label> 
		<span>Name</span><input type="text" placeholder="korea">
	</label>
	<label>
		<span>Email</span><input type="email" placeholder="korea@daum.net">
	</label>
	<label>
		<span>Comment</span><textarea placeholder="메시지를 남겨주세요"></textarea>
	</label>
	<label>
		<span></span><input type="submit" value="submit">
	</label>
</form>
 </body>
</html>

profile
꾸준함의 가치를 믿는 개발자

0개의 댓글