首页 > 编程 > HTML > 正文

CSS3文本阴影text-shadow属性详解

2019-10-26 17:19:09
字体:
来源:转载
供稿:网友

文本阴影text-shadow属性特效:

1.右下角阴影,左下角阴影,左上角阴影,右上角阴影

  • <!DOCTYPE html>   <html lang="en">  
  • <head>       <meta charset="UTF-8">  
  •     <title>text-shadow</title>       <style>  
  •         p{              text-align:center;   
  •           margin:0;              font-family: helvetica,arial,sans-serif;   
  •           color:#999;              font-size:80px;   
  •           font-weight:bold;              text-shadow:10px 10px #333;   
  •         }        </style>  
  • </head>   <body>  
  •     <p>Text Shadow</p>   </body>  
  • </html>  
  • 文字效果为:

    如果将text-shadow改成:text-shadow:-10px 10px #333 ,就将出现左下角阴影

    将text-shadow改成:text-shadow:-10px -10px #333 , 就将出现左上角阴影

     将text-shadow改成:text-shadow: 10px -10px #333 , 就将出现右上角阴影

    2. 使用text-shadow设置立体文字效果

  • <!DOCTYPE html>    <html lang="en">  
  •  <head>        <meta charset="UTF-8">  
  •      <title>text-shadow</title>        <style>  
  •          p{               text-align:center;   
  •            margin:0;               font-family: helvetica,arial,sans-serif;   
  •            color:#999;               font-size:80px;   
  •            font-weight:bold;               text-shadow:-1px -1px #fff,   
  •                                     1px 1px #333;             }   
  •      </style>    </head>  
  •  <body>        <p>Text Shadow</p>  
  •  </body>    </html>  
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表