如何在div的中间对齐svg圆?

时间:2019-03-29 16:43:06

标签: html css css3 svg centering

在Mac OS中,我需要画一个圆圈来模拟用于关闭窗口的按钮。但是,当我尝试将其降低时,svg的边界会将其切断。如何移动边框以将圆圈直接(垂直)放置在面板中间?

JSFiddle:https://jsfiddle.net/sm6r0kvn/2/

<div class="panel">
  <svg viewbox="0 0 20 17" width="20" heigth="50"><circle r="7" cx="14" cy="9.5" fill="#fc615e"/></svg>
</div>

2 个答案:

答案 0 :(得分:3)

您可以像<svg viewbox="0 0 20 20" width="20" heigth="20">一样设置 viewbox ,然后将cxcy设置为50%。如果您想将其垂直放置在panel的中央,只需将其设置为flexbox并添加align-items: center-参见以下演示:

.block {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 550px;
  min-width: 480px;
  width: 80vw;
  height: 200px;
  background: black;
  border-radius: 10px 10px 5px 5px;
}

.panel {
  background-color: #e0e0e0;
  border-radius: 5px 5px 0 0;
  display: flex; /* added */
  align-items: center; /* added */
}

.text {
  color: white;
  padding: 5px;
}
<div class="block">
  <div class="panel">
    <svg viewbox="0 0 20 20" width="20" heigth="20">
      <circle r="7" cx="50%" cy="50%" fill="#fc615e"/>
    </svg>
  </div>
  <div class="text">
    Text here
  </div>
</div>

答案 1 :(得分:1)

这是因为要在svg视图框之外绘制循环。您可以使用CSS移动整个svg框,也可以将其放大

svg {
  border: 1px blue solid;
}
.panel.moved {
  margin-left: 100px;
}
<div class="panel">
  <svg viewbox="0 0 20 20" width="200" heigth="200">
    <circle r="10" cx="10" cy="10" fill="#fc615e"/>
  </svg>
</div>
<div class="panel">
  <svg viewbox="0 0 20 20" width="200" heigth="200">
    <circle r="10" cx="20" cy="10" fill="#fc615e"/>
  </svg>
</div>
<div class="panel">
  <svg viewbox="0 0 30 20" width="300" heigth="200">
    <circle r="10" cx="20" cy="10" fill="#fc615e"/>
  </svg>
</div>
<div class="panel moved">
  <svg viewbox="0 0 20 20" width="200" heigth="200">
    <circle r="10" cx="10" cy="10" fill="#fc615e"/>
  </svg>
</div>