前回2つの画像を一つにする方法をこちらで教えていただきました
codepen
今回は4つの画像を一つにしたくご質問させていただきました
自分で書いたソースだと1つを4つにはならず、
分離された形になってしまいます
4つを1つにするにはどうしたらいいでしょうか
<style> div.icon { position: relative; width: 150px; height: 150px; overflow: hidden; border-radius: 75px; } div.icon::before { content: ""; position: absolute; left: 0; top: 0; width: 75px; height: 75px; background-image: url(https://placehold.jp/3d4070/ffffff/75x150.png); background-repeat: no-repeat; } div.icon::after { content: ""; position: absolute; left: 75px; top: 0; width: 75px; height: 75px; background-image: url(https://placehold.jp/943157/ffffff/75x150.png); background-repeat: no-repeat; } div.icon2 { position: relative; width: 150px; height: 150px; overflow: hidden; border-radius: 75px; transform: rotateX( 180deg ); } div.icon2::before { content: ""; position: absolute; left: 0; top: 0; width: 75px; height: 75px; background-image: url(https://placehold.jp/3d4070/ffffff/75x150.png); background-repeat: no-repeat; } div.icon2::after { content: ""; position: absolute; left: 75px; top: 0; width: 75px; height: 75px; background-image: url(https://placehold.jp/943157/ffffff/75x150.png); background-repeat: no-repeat; } </style> <h1>画像を半分ずつ表示した円形アイコン</h1> <div class="icon"> </div> <div class="icon2"> </div>