CSS flush image? -
i'm working on site here: http://seobeaver.ca/what-we-deliver/
i got product image line green section using negative padding-bottom value here:
img.img-with-animation { opacity: 0; position: relative; padding-bottom: -7px;
suddenly no longer works , there space between image , next section ruining effect.
help?
negative padding values not valid, negative margin values are. can change padding-bottom
margin-bottom
, , keep negative value.
img.img-with-animation { opacity: 0; position: relative; margin-bottom: -7px; }
Comments
Post a Comment