HTML 자리 표시자 속성은 입력/텍스트 영역에 표시되는 텍스트를 나타냅니다. 사용자가 입력을 시작하기 전에 요소.
구문
다음은 구문입니다 -
<tagname placeholder=”text”></tagname>
HTML 자리 표시자 속성의 예를 살펴보겠습니다. −
예시
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background-color: #8BC6EC; background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%); text-align: center; } </style> <body> <h1>HTML placeholder Demo</h1> <input type="text" placeholder='Enter your first name'> <input type="text" placeholder='Enter your last name'> </body> </html>
출력