色卡选择效果代码

代码语言:html

所属分类:选择器

代码描述:色卡选择效果代码

代码标签:

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

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

<head>

  <meta charset="UTF-8">

  
  <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Lato:300'>
  
<style>
* {
  box-sizing: border-box;
}

body {
  background: #222;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  -webkit-transition: background .33s;
  transition: background .33s;
}

.colour {
  width: 18.4%;
  background: rgba(255, 255, 255, 0.9);
  float: left;
  text-align: center;
}
.colour:nth-child(n) {
  margin-top: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.colour:nth-child(5n) {
  margin-right: 0;
  margin-bottom: 0;
}
@medi.........完整代码请登录后点击上方下载按钮下载查看

网友评论0