click - Css help? Images on hover -
hey guys need css have images expand when hover on them pushes away @ 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 want overlap rest of images , expand on left click rather hover
one way can use absolute positioning.
the problem is, you're hovering, changing sizes (width , height), move across , re-render page.
Comments
Post a Comment