I wanted to finish cropping the image in css completely and removed all edges, but I can only cut it down and the right side. I wanted to know how I could do to cut completely, here is the code I am using and the image.
css:
div {
border: 1px solid #000;
float: left;
margin: 10px;
overflow: hidden;
height: 78px;
width: 78px;
}
div img {
clip:rect(110px,30px,300px,0px);
}
html:
<body> <div><img src="TESTE.jpg"></div> </body>