两个背景水平在div一个圆形div

时间:2015-10-26 08:48:53

标签: html css pseudo-element

我在一个div中使用边框半径制作两个水平背景时遇到小问题。我希望主要的div是一个圆圈。

我的代码



body{
  text-align: center;
}
.split-outer {
  position: relative;
  display: inline-block;
  width: 200px;
  height: 200px;
  z-index: 2;
  background: #014495;
  border-radius: 100%;
}
  .split-outer::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    background: #fff;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 200px;
  }

.split-inner{
  width: 200px;
  height: 200px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

span{
    display: block;
}

  span.split-title{
    padding: 30px 0 10px 0;
    font-size: 55px;
    text-align: center;
    line-height: 55px;
}

  span.split-content{
    padding: 20px 0;
    font-size:18px;
    color: #014495;
  }

<div class="container-fliud">
    <div class="jumbotron">
        <div class="split-outer">
            <div class="split-inner">
                <span class="split-title">100</span>
                <span class="split-content">Lorem ipsum</span>
                 <button type="button" class="btn btn-primary btn-sm">Button</button>
            </div>
        </div>
    </div>
</div> 
&#13;
&#13;
&#13;

但我有一个小虫子,在后面的元素我看到第一个div的蓝色背景线。它看起来像是从半径生成的边界线。但我想要一个干净的白色圆形背景。

Codepen prev:http://codepen.io/michal_t/pen/KdoZYz/

2 个答案:

答案 0 :(得分:1)

border: 2px solid white放入:after

这是css代码:

body {
    text-align: center;
}
.split-outer {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 200px;
    z-index: 2;
    background: #014495;
    border-radius: 100%;
}
.split-outer::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: -1px;
    width: 100%;
    height: 50%;
    z-index: -1;
    background: #fff;
    border-bottom-right-radius: 200px;
    border-bottom-left-radius: 200px;
    border: 2px solid white;
}
.split-inner {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
span {
    display: block;
}
span.split-title {
    padding: 30px 0 10px 0;
    font-size: 55px;
    text-align: center;
    line-height: 55px;
}
span.split-content {
    padding: 20px 0;
    font-size: 18px;
    color: #014495;
}

这是fiddle

答案 1 :(得分:0)

您可以通过从.split-outer中删除背景颜色然后使用:before伪来创建背景的上半部分,类似于使用:after伪后创建下半部分的方式。

.split-outer:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background: #014495;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #014495;
  border-top-right-radius: 200px;
  border-top-left-radius: 200px;
}

http://codepen.io/anon/pen/dYmdva