div+css实现图片立体长阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现图片立体长阴影效果代码

代码标签: div css 图片 立体 阴影

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

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

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

  
<style>
img {
  --c: #CBE86B; /* the main color */
  --t: 5px; /* thickness of the outline */
  
  width: 200px; /* the image size */
  aspect-ratio: 1; /* only square images, don't change this */
  object-fit: cover;
  border-image: 
    linear-gradient(45deg,
      color-mix(in srgb,var(--c),#.........完整代码请登录后点击上方下载按钮下载查看

网友评论0