CSS3 그림자 효과 두번째 > 퍼블리셔팁

퍼블리셔팁

퍼블리싱과 관련된 유용한 정보를 공유하세요.
질문은 상단의 QA에서 해주시기 바랍니다.

CSS3 그림자 효과 두번째 정보

CSS CSS3 그림자 효과 두번째

본문



6bdffa54a1ef08d61b8f06ccafeca4d2_1502435011_504.png
 

h1 {
    text-shadow: 2px 2px red;
}
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
    text-shadow: 2px 2px red;
}
</style>
</head>
<body>

<h1>Text-shadow effect!</h1>

<p><b>Note:</b> Internet Explorer 9 and earlier versions, do not support the text-shadow property.</p>

</body>
</html>

6bdffa54a1ef08d61b8f06ccafeca4d2_1502435022_5068.png


6bdffa54a1ef08d61b8f06ccafeca4d2_1502435059_9955.png


h1 {
    text-shadow: 2px 2px 5px red;
}

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
    text-shadow: 2px 2px 5px red;
}
</style>
</head>
<body>

<h1>Text-shadow effect!</h1>

<p><b>Note:</b> Internet Explorer 9 and earlier versions, do not support the text-shadow property.</p>

</body>
</html>
6bdffa54a1ef08d61b8f06ccafeca4d2_1502435069_4431.png
 
추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로