I want to zoom image with only CSS. The code below zooms the image when the left button of the mouse is kept pressed but I want to zoom in and out with a mouse click. How can I
Let's use a trick here, an input checkbox:
input[type=checkbox] { display: none; } .container img { margin: 100px; transition: transform 0.25s ease; cursor: zoom-in; } input[type=checkbox]:checked ~ label > img { transform: scale(2); cursor: zoom-out; }