颜色选择框选择器效果

代码语言:html

所属分类:选择器

代码描述:颜色选择框选择器效果

代码标签: 选择器 效果

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


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">

<style>
/* Inspired by the branding over at Help Scout 
https://style.helpscout.com/visual-elements/#color */

html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial;
  font-size: 15px;
  webkit-font-smoothing: antialiased;
  background-color: white;
  width: 100%;
}

.bg {
  width: 100%;
}

div {
  cursor: pointer;
}

.container {
  display: flex;
  flex-direction: wrap;
  justify-content: center;
  position: relative;
  top: 100px;
}

.inside {
  display: flex;
  flex-direction: column;
  box-shadow: -1px 13px 25px -5px rgba(0.........完整代码请登录后点击上方下载按钮下载查看

网友评论0