Problem:
The problem is that bounceInUp
animation bounceInUp
applied to .la-tekst a
.
The animation does the following:
@-webkit-keyframes bounceInUp { 0%{opacity:0;-webkit-transform:translateY(2000px)} 60%{opacity:1;-webkit-transform:translateY(-30px)} 80%{-webkit-transform:translateY(10px)} 100%{-webkit-transform:translateY(0) } }
Perhaps this was a side effect of inline-block
( .la-tekst a
set to display:inline-block;
), but the anchor element occupied both its original space and the space specified from the 0% bounceInUp
animation.
Decision:
Applying overflow:hidden
to any of the following will work
(select one selector)
.page {overflow:hidden;} .section-content {overflow:hidden;} .zone-content-wrapper {overflow:hidden;} .region-content {overflow:hidden;} .region-content-inner {overflow:hidden;} .block-block-1 {overflow:hidden;} .la-tekst {overflow:hidden;}
or
Change the boundary area that the anchor tag occupies
.la-tekst a { display: inline; }
or
.la-tekst a { display: block; }
Two suggestions that I have given you will help solve the problem ... The first one will hide the bleeding children by its height or (including the superanimized anchor tag).
The second solution will change the bounding area in which the anchor tag is located, so that it no longer occupies its animated space and its original space at the same time.
source share