Hey guys i need help with some css i have some images that expand when i hover over them but it pushes everything away at the same time
<style>
.box
{
width: 750px;
height: 1000px;
border:1px solid green;
}
.enlarge-onhover {
width: 125px;
height: 125px;
}
.enlarge-onhover:hover {
width: 225px;
height: 225px;
}
</style>
I dont want it to do that i want it to just overlap the rest of the images and to expand on a left click rather than hover