Wednesday, November 4th, 2015 code css utils • 69w CSS: Transition all ▼ ▲ In CSS if we define transitions, every time a value changes an animation-transition is created and executed. So if we want to use transitions for all elements and for all values (which is wrong in many ways), we can just write: *{ transition: all 0.7s ease-in-out; } done_