css实现三维锯齿立体border边框效果代码

代码语言:html

所属分类:布局界面

代码描述:css实现三维锯齿立体border边框效果代码

代码标签: css 三维 锯齿 立体 border 边框

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

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

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


  
  
<style>
.bottom {
  --s: 81px; /* control the size */
  --d: 20px; /* control the depth */
  
  --_m: from 45deg at bottom;
  padding-bottom: var(--s);
  background: 
    conic-gradient(var(--_m) var(--d) left 50%,#0004 135deg,#0009 0 270deg,#0000 0) 
    50%/var(--s);
  background-color: #78C0A8; /* the main color */
}
.top {
  --s: 67px; /* control the size */
  --d: 14px; /* control the depth */
  
  --_m: from -135deg at top;
  padding-top: var(--s);
  background: 
    conic-gradient(var(--_m) var(--d) left 50%,#0009 135deg,#0004 0 270deg,#0000 0) 
    50%/var(--s);
  background.........完整代码请登录后点击上方下载按钮下载查看

网友评论0