div+css实现三维立体字母阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现三维立体字母阴影效果代码

代码标签: div css 三维 立体 字母 阴影

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

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
h2 {
  --s: .4em; /* space between boxes*/
  --d: .2em; /* the depth */
  --p: .3em; /* the inline padding */
  
  font-family: monospace; /* only for monospace font */
  font-size: 2.8rem;
  line-height: 1.5; /* control the height of the boxes */
  color: #fff;
  letter-spacing: calc(var(--s) + var(--d) + 2*var(--p));
  padding-left: var(--p);
  padding-bottom: var(--d);
  clip-path: inset(0 calc(var(--p) + var(--s)) 0 0);
  --_g:calc(1ch + var(--s) + var(--d) + 2*var(--p));
  background:
    conic-gradient(at calc(100% - var(--d) - var(--s)) calc(100% - var(--d)),
             .........完整代码请登录后点击上方下载按钮下载查看

网友评论0