2. CSS

CSS ::placeholder (플레이스홀더 문구 색상 바꾸기)

도피디 2024. 11. 30. 16:39
반응형
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nick Times</title>
<style>
body {
height: 1000vh;
margin: 50px;
}
input::placeholder {
color: slateblue;
}
</style>
</head>
<body>
<form>
<input type="text" placeholder="name" />
</form>
</body>
</html>

 

 

 

 

 

결과

input 박스 안의 placeholder 색상이 slateblue로 변경되었다. 

(하지만 input 안에 텍스트를 입력하면 텍스트는 여전히 검정색임)

반응형