Lil help with CSS 10-03-2013, 11:58 AM
#3
So I used transition-delay:0.5s; to get some delay on some effects.
Such as
The thing is I want some other styling to not have delay on the same id,
I tried this:
But ofc it didn't work.
How should I approach this?
Such as
Code:
#id:focus {
color: #FF0000;
transition-delay:0.5s;
}The thing is I want some other styling to not have delay on the same id,
I tried this:
Code:
#id:focus {
color: #FF0000;
transition-delay:0.5s;
}
#id:focus { border-color: #000000;
}But ofc it didn't work.
How should I approach this?
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)