/*Css float aniimation, left to right.*/ @keyframes left_to_right{ from{ margin-left: 0vw; } to{ margin-left:100vw; } } img{ animation: left_to_right 2s linear infinite; }