あなたは
境界線を削除し、このラインを使用するCSSの放射状のグラデーションを使用することができます。また、
background:radial-gradient(white 20% , rgb(6, 42, 64) 21% , rgb(6, 42, 64) 47% , white 48%);
チェック以下の例の前に異なる背景をすべて適用する以外にはコンテナは使用されません。before
HTML
<div class="container"></div>
CSS
.container
{
display:inline-block;
width:100px;
height:200px;
position:relative;
background-color:#062a40;
}
.container:before
{
content:" ";
width:50px;
height:50px;
position:absolute;
top:50%;
left:50%;
transform:translate3d(-50%,-50%,0);
border-radius:50%;
background: -webkit-radial-gradient(white 20% , rgb(6, 42, 64) 21% , rgb(6, 42, 64) 47% , white 48%);
background: -o-radial-gradient(white 20% , rgb(6, 42, 64) 21% , rgb(6, 42, 64) 47% , white 48%);
background: -moz-radial-gradient(white 20% , rgb(6, 42, 64) 21% , rgb(6, 42, 64) 47% , white 48%);
background: radial-gradient(white 20% , rgb(6, 42, 64) 21% , rgb(6, 42, 64) 47% , white 48%);
}
あなたは放射状のグラデーションカラーの割合を変更することで、それをカスタマイズすることができ、またブラウザが
を接頭辞追加することを忘れないでください