+ 2
How to make 3d coin in pure css?
Making of 3d coin
4 Respuestas
+ 2
😵PSYCHØ CØDER😵 better do not refer w3school information.
Mozilla developer provides accurate updated information, always refer to Mozilla, not w3school. https://developer.mozilla.org/en-US/docs/Web/CSS
0
Read about each thing by css in css3
0
<div></div>
<style>
div {
width: 100px; height: 100px;
background: grey;
border-radius: 50%;
transform: rotateX(90deg); /* ect...*/
}
</style>