Ok, so first of all, this started because of another problem - as soon as the text is wrapped in some sort of element, div, p, whatever, it stops fading it neatly at the start. I tried googling it but haven't found a solution that would work for me. So I decided to just use a simple fade-in animation on all elements, except I can't stop it from playing twice...
Neither the (transition: "dissolve") method nor CSS animations work properly - I checked both on Chrome and Firefox. The same CSS animation works just fine when tested in a different webdev environment.
This is really making me tired...
the code I'm using currently:
* {
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}