2. CSS

CSS 특정 단어가 포함된 placeholder 꾸미기

도피디 2024. 11. 29. 22:50
반응형

placeholder에 "name" 이라는 단어를 포함한

모든 input의 배경색을 pink로 설정해보기

 

<!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~="name"] {
background-color: pink;
}
</style>
</head>
<body>
<div>
<form>
<input type="text" placeholder="First name" />
<input type="text" placeholder="Last name" />
<input type="password" required placeholder="password" />
</form>
</div>
</body>
</html>

 

 

 

 

 

결과

 

유후 신기하구만

 

반응형