css+div实现简洁tab选项卡效果代码

代码语言:html

所属分类:选项卡

代码描述:css+div实现简洁tab选项卡效果代码

代码标签: css div 简洁 tab 选项卡

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

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

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

@import url("https://use.typekit.net/ovt6ynt.css");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@200;300;400;500;600;700&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@100;300;400;500;700;900&family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&family=Spectral:wght@200;300;400;500;600;700;800&display=swap");


body {
  padding: 0;
  margin: 0;
  height: 100%;
  font-family: "Roboto", sans-serif;
  background: linear-gradient(#141e30, #243b55);
}
.title {
    text-align: center;
    padding: 50px 0px 25px 0;
    font-size: 44px;
    font-weight: 600;
    color: #21222c;
    font-family: 'Playfair Display SC';
}
.wrapper {
  background-color: #f6f8ff;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  opacity: 1;
}


.wrapper.pre  {
    background-size: cover !important;

    position: absolute;
    top: 0;
    z-index: -2;
    opacity: 0.75;
  background: url(//repo.bfw.wiki/bfwrepo/image/643b76c263.........完整代码请登录后点击上方下载按钮下载查看

网友评论0