中央が浮き上がったようなシャドウを追加する
.box {
position: relative;
}
.box:before {
content: "";
position: absolute;
z-index: -1;
left: 20%;
right: 20%;
top: 50%;
bottom: 0;
border-radius: 700px 700px 700px 700px / 70px 70px 70px 70px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
参考サイト
-
前の記事
2色ボーダー付きのタイトルを作成する 2016.10.24
-
次の記事
横並びリストを中央に寄せる 2016.10.24