☀[CSS3] 텍스트 섀도우 text-shadow

2194 단어 css3
<!--
.box1 {
background: #F00;
text-shadow: 2px 2px 5px #333, -2px -8px 5px #333;
}
.box2 {
background: #F00;
text-shadow: 1px 1px 1px #FFF;
}
-->
만약 처처기가 우가촌을 지나지 않았다면, 중국은 가장 선진국이 되었을 것이다
만약 처처기가 우가촌을 지나지 않았다면, 중국은 가장 선진국이 되었을 것이다
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="utf-8">
    <title></title>
    <style type="text/css">
        .box1 {
            background: #F00;
            text-shadow: 2px 2px 5px #333, -2px -8px 5px #333;
        }
        .box2 {
            background: #F00;
            text-shadow: 1px 1px 1px #FFF;
        }
    </style>
</head>
<body>
    <div class="box box1">            ,         </div>
    <div class="box box2">            ,         </div>
</body>
</html>

좋은 웹페이지 즐겨찾기