text-shadow 속성을 사용하여 텍스트 주위에 그림자를 설정합니다. 다음 코드를 실행하여 CSS에서 텍스트 주위에 그림자를 설정하는 방법을 배울 수 있습니다.
예시
<html> <head> </head> <body> <p style = "text-shadow:3px 1px 4px green;"> If your browser supports the CSS text-shadow property, this text will have a green shadow. </p> </body> </html>