텍스트 그림자 속성은 텍스트 주위에 텍스트 그림자를 설정하는 데 사용됩니다. 다음 코드를 실행하여 text-shadow를 설정할 수 있습니다. 속성:
예시
<html> <head> </head> <body> <p style = "text-shadow:3px 2px 5px red;"> If your browser supports the CSS text-shadow property, this text will have a red shadow. </p> </body> </html>