div+css实现三段弧形布局效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css实现三段弧形布局效果代码

代码标签: div css 三段 弧形 布局

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


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

<head>

  <meta charset="UTF-8">
  

  
  
  
<style>
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

.prods, .callouts, .news {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
  font-size: 18px;
}

.prods {
  color: gray;
  background-color: white;
}

.callouts {
  color: white;
  position: relative;
  z-index: 1;
}

.news {
  color: white;
  background-color: tan;
}

svg {
  posit.........完整代码请登录后点击上方下载按钮下载查看

网友评论0