I would like to know how I do this effect under a cd that in css
MysiteandthisIwanttodowherethearrowispointing
You need to adjust the border-radius
of your element, if it is large enough the element will be round:
img {
background-color: blue;
width: 200px;
height: 200px;
}
.capa {
width: 210px;
height: 210px;
}
.cd {
position: absolute;
z-index: -1;
border-radius: 100px;
border: 2px solid gray;
left: 100px;
}
<img class="capa" src="https://upload.wikimedia.org/wikipedia/commons/a/af/Tux.png"><imgclass="cd" src="https://upload.wikimedia.org/wikipedia/commons/a/af/Tux.png">