java,web study/5주차 (7월 29일~8월 4일)
활성화/비활성화 (23페이지 예제)
doublemetal
2013. 7. 31. 18:20
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<style>
input:enabled {
background-color: white;
}
input:disabled {
background-color: gray;
}
input:focus {
background-color: papayawhip
}
</style>
</head>
<body>
<h2>활성화</h2>
<input type="text" />
<h2>비활성화</h2>
<input type="text" disabled="disabled" />
</body>
</html>