Computer >> Máy Tính >  >> Lập trình >> Javascript

Cách sử dụng thuộc tính text-shadow trong CSS

text-shadow thuộc tính được sử dụng để đặt bóng văn bản xung quanh văn bản. Bạn có thể thử chạy mã sau để đặt text-shadow tài sản:

Ví dụ

<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>