i have some image elements that when hovered on, scale up, however, this causes some other elements to move, which i dont want happening.
I have tried things like float: right
which work, but dont fit for my website, since it’s margined and centered.
here is a simpled version of my site:
JavaScript
x
18
18
1
body {
2
background-color:#1a1a1a;
3
}
4
5
img{
6
max-width: 15%;
7
transition-duration: 0.5s;
8
transform-origin: top;
9
border-radius: 25px;
10
overflow: hidden;
11
margin: 50px;
12
}
13
14
img:hover{
15
max-width: 17%;
16
cursor: pointer;
17
transform: scale(110%);
18
}
JavaScript
1
3
1
<img src="https://www.tazzadesign.com/wp-content/uploads/sites/65/2013/11/dummy-image-square.jpg">
2
<img src="https://www.tazzadesign.com/wp-content/uploads/sites/65/2013/11/dummy-image-square.jpg">
3
<img src="https://www.tazzadesign.com/wp-content/uploads/sites/65/2013/11/dummy-image-square.jpg">
Advertisement
Answer
Use transform: scale(110%)
without changing any sizes.