hello everybody i need some help, what i try to do is that when the middle word (in this case GYM) scales up the words next to it has to be moving awai from it when it scales, my question is how, can someone help me?
HTML:
<body
<header
h1> Boxing <span GYM</span Life </h1
</header
</body
Using a transition, it works similar to relative positioning, in that the element retains its original space in the document flow throughout the transition, so other elements are not affected.
You could do this by animating the font size, as that will affect the flow. Not sure how efficient that is though.