5

我正在寻找一种方法来创建一个可以容纳居中内容的响应式 CSS3 圆圈。
关于圈子,我在这个问题中找到了一些很好的信息。太糟糕了,似乎无法将内容集中在这一点上。

这个问题也和我的很相似,尽管它是一个应该居中的图像。在我的情况下,使用背景图像不是一个选项,所以这个选项对我也不起作用。

你有什么想法我可以解决这个问题吗?
当然我可以使用图像,但 CSS 会更优雅!

4

3 回答 3

5

纯 CSS 需要许多额外的包装器

更新:原始帖子(我已删除)错过了您正在寻求响应式设计的事实。基于我对您引用的响应式圈子问题的回答似乎适用于所有 CSS3 浏览器,请参阅 fiddle

HTML(需要五层wrapper,我在这个html中只展示了一个圆圈)

<div class="circles">
    <div>
      <div>
        <div>
          <div>
            <!-- BEG Content -->
            All types of content (see fiddle)
            <!-- END Content -->
          </div>
        </div>
      </div>
    </div>
    <!-- ditto the above 3 more times -->
</div>

CSS

.circles{
    margin:0px auto;
}
.circles > div {
    overflow:hidden;
    float:left;
    width:auto;
    height:auto;
    position: relative;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    -khtml-border-radius: 50%;
    background:#eee;
}

.circles > div > div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.circles > div > div > div {
    display: table;
    width: 100%;
    height: 100%;
}
.circles > div > div > div > div {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 320px)
{
    .circles > div {padding: 50%;}
}

@media (min-width: 321px) and (max-width: 800px)
{
    .circles > div {padding: 25%;}
}

@media (min-width: 801px)
{
    .circles{width:800px}
    .circles > div {padding: 12.5%;}
}
于 2013-01-12T14:22:09.637 回答
1

接受的答案对我不起作用,因为我想旋转圆圈。这样做:

HTML

<div class="mycircle">
  <div class="mycontent">
    <span>TEXT</span>
  </div>
</div>

CSS

.mycircle {
  width: 30%; 
  height: 0;
  padding: 15% 0; //padding top & bottom must equal width 
  border-radius: 50%;
  -moz-border-radius: 50%; 
  -webkit-border-radius: 50%; 
  background: #dedede; 
}
.mycontent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.mycontent:before {
  content: '';
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 100%;
}

.mycontent span {
  vertical-align: middle;
  display: inline-block;
}
于 2013-07-05T07:03:17.730 回答
1

如果内容的高度是固定的,并且您需要 CSS 方法,请使用以下属性将其应用于 cicle 内的内容

margin: auto; /*will center the element*/
position: relative;
top: 50%;
margin-top: - [here insert the height of the element if you know in advance / 2]px
于 2013-01-12T14:47:53.913 回答