0
我試圖在頁面中間放置一個大的svg圓圈 - 水平和垂直。不工作,任何提示?如何將Svg Circle放入頁面中間
這裏是我的代碼 - 使用玉和SCSS:
玉:
.logo
svg.logo__svg
circle(
r=300
style="fill:none;stroke:white;stroke-width:1;")
SCSS:
.logo{
height: 80%;
width: 80%;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
@include element('svg'){
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100%;
width: 100%;
}
}