CSS响应圈

时间:2017-09-14 19:52:50

标签: css html5 css3 svg layout

如何将图标和文本中心对齐(图标下方),以便它们在调整大小时保持在矩形div内的相同位置?这是我的意思的例子。 Example

1 个答案:

答案 0 :(得分:1)

.card{
  width: 300px;
  height: 400px;
  border: 1px solid skyblue;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle{
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background: green;
}
<div class="card">
  <span class="circle"></span>
</div>

尝试使用display: flex