Home / CSS Tips Generated By ChatGPT / CSS Transitions Create smooth transitions between property values with the transition property. Source Code .transition { transition: background-color 0.5s ease; } .transition:hover { background-color: coral; }