Search
 
SCRIPT & CODE EXAMPLE
 

CSS

div background color change animation

transition: background-color 1000ms linear;
Comment

css animate background color change

#content #nav a {
    background-color: #FF0;
    
    -webkit-transition: background-color 1000ms linear;
    -moz-transition: background-color 1000ms linear;
    -o-transition: background-color 1000ms linear;
    -ms-transition: background-color 1000ms linear;
    transition: background-color 1000ms linear;
}

#content #nav a:hover {
    background-color: #AD310B;
}
Comment

PREVIOUS NEXT
Code Example
Css :: css border hover 
Css :: how to add fade-in with page transition 
Css :: css line spacing 
Css :: remove list dots on li 
Css :: border-radius cross browser 
Css :: CSS background blur or glass effect 
Css :: css bg code 
Css :: remove bullets from unordered list in css 
Css :: all.min.css cdn 
Css :: background image css stack overflow 
Css :: css counters 
Css :: css how to remove underline from visited sites 
Css :: css set property with data attribute 
Css :: nth child css tricks 
Css :: scrollbar not working 
Css :: image rotate css 
Css :: css blink animation 
Css :: elementor accordion closed by default 
Css :: how to crop images in css 
Css :: javascript canvas pixel art 
Css :: background clip text 
Css :: disabled button tailwind css class on basis of true false 
Css :: css prevent scrolling behind overlay 
Css :: best box shadow 
Css :: how to hide some grid items from grid in css 
Css :: cool hover effects css 
Css :: transparent button css 
Css :: vertical padding css 
Css :: input type password css 
Css :: Link design like a Button" 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =