我尝试使用.line中的clip-path删除半圆底边与直线的交点,但没有成功。这是正确的方法还是还有其他方法?
我尝试使用
clip-path
删除半圆底边与直线的交点
在.line
,但没有成功。这是正确的方法还是有其他方法?
我们该如何解决这个问题呢? 我们如何删除图中提到的部分?
body {
margin: 0vh 0vw;
}
.header {
position: relative;
width: 100%;
height: 12vh;
background-color: #004d40;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
top: 0;
}
.line {
position: absolute;
left: 0;
top: calc(50%);
width: 100%;
height: 0.25vh;
background-color: white;
z-index: 1;
}
svg {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 0%);
z-index: 2;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SVG Header with Half Circle</title>
<div class="header">
<div class="line"></div>
<svg width="10vw" height="5vh" viewBox="0 0 100 50" preserveAspectRatio="xMidYMin meet" xmlns="http://www.w3.org/2000/svg">
<path d="M0,0 A50,50 0 0,0 100,0" fill="none" stroke="white" stroke-width="3"/>
</svg>
</div>