2
I wanted to finish cutting the image in css completely and remove all edges, but I can only cut at the bottom and right side. I wanted to know how I could do to cut through, here’s the code I’m 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>
HTML was missing as well
– Sveen
<body> <div><img src="TESTE.jpg"></div> </body> and is a normal html with a div and a <img>
– Marcelo Henrique Dos Reis