absolute + clip

by redky

HTML

<div class="box"></div>

CSS

.box {
    width: 100px;
    height: 100px;
    background-color: #313131;
    border-radius: 50%;
    position: absolute; /* fixed */
    clip: rect(0, 100px, 50px, 0);
}