css实现四种文字阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现四种文字阴影效果代码

代码标签: css 四种 文字 阴影

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<html>

<head>
    <style>
        h1 {
          font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
          font-size: 92px;
          padding: 80px 50px;
          text-align: center;
          text-transform: uppercase;
          text-rendering: optimizeLegibility;
        }
        h1.elegantshadow {
          color: #131313;
          background-color: #e7e5e4;
          letter-spacing: 0.15em;
          text-shadow: 1px -1px 0 #767676, -1px 2px 1px #737272, -2px 4px 1px #767474, -3px 6px 1px #787777, -4px 8px 1px #7b7a7a, -5px 10px 1px #7f7d7d, -6px 12px 1px #828181, -7px 14px 1px #868585, -8px 16px 1px #8b8a89, -9px 18px 1px #8f8e8d, -10px 20px 1px #949392, -11px 22px 1px #999897, -12px 24px 1.........完整代码请登录后点击上方下载按钮下载查看

网友评论0