I would like to know how I make this effect in css [closed]

-3

I would like to know how I do this effect under a cd that in css

MysiteandthisIwanttodowherethearrowispointing

    
asked by anonymous 18.09.2015 / 08:48

1 answer

4

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">
    
18.09.2015 / 09:21