2. CSS

CSS Pseudo Selectors / input[type="password"] {background-color: thistle;}

도피디 2024. 11. 29. 22:34
반응형
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
height: 1000vh;
margin: 50px;
}
input {
border: 1px solid wheat;
}
input:required {
border-color: tomato;
}
input[placeholder="username"] {
background-color: greenyellow;
}
input[type="password"] {
background-color: thistle;
}
</style>
</head>
<body>
<div>
<form>
<input type="text" placeholder="username" />
<input type="password" required placeholder="password" />
</form>
</div>
</body>
</html>

 

 

 

 

 

결과

반응형