自学内容网 自学内容网

生动好看的css卡片样式

样式一:

借鉴网址:https://www.vue3js.cn/

展示:
在这里插入图片描述
css

<div class='aa'></div>

.aa {
  width: 300px;
  height: 200px;
  background: #fbfbfb !important;
  border: 1px solid #f1f1f1;
  transition: all 0.2s ease-in-out;
}
.aa:hover {
  width: 300px;
  height: 200px;
  background: #fbfbfb !important;
  box-shadow: 0 18px 32px -18px #000 !important;
  transform: translateY(-3px);
  border: 1px solid #f1f1f1;
}

— 持续更新—


原文地址:https://blog.csdn.net/qq_44476779/article/details/142363119

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!