文本阴影:text-shadow

例如:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style type="text/css">
    p{
        text-align: center;    
        font-family: helvetica,arial,sans-serif;
        font-size: 80px;
        font-weight: bold;
        text-shadow: 0.1em 0.1em #ccc;
    }
    </style>
</head>
<body>
    <p>Hello World</p>
</body>
</html>

 

posted @ 2013-10-19 09:02  yshy  阅读(213)  评论(0编辑  收藏  举报