答案 0 :(得分:2)
使用两个div
和CSS:
https://codepen.io/anon/pen/RgJQgN
#c {
height: 110px;
overflow: hidden;
}
#b {
height: 150px;
width: 150px;
border: 30px solid blue;
border-radius: 50%;
margin-top: -50px;
margin-left: -150px;
}
<div id="c">
<div id="b"></div>
</div>