Login Register


Lil help with CSS filter_list
Author
Message
Lil help with CSS #1
So I used transition-delay:0.5s; to get some delay on some effects.
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?

Reply

Lil help with CSS #2
So I used transition-delay:0.5s; to get some delay on some effects.
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?

Reply

Lil help with CSS #3
So I used transition-delay:0.5s; to get some delay on some effects.
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?

Reply

RE: Lil help with CSS #4
Mmmm why not use 2 different id's? one with the delay and one without it?

Reply

RE: Lil help with CSS #5
Mmmm why not use 2 different id's? one with the delay and one without it?

Reply

RE: Lil help with CSS #6
Mmmm why not use 2 different id's? one with the delay and one without it?

Reply

RE: Lil help with CSS #7
In html, do this:
Code:
<div id=focus> your stuff here </div>
and css code
Code:
#focus { transition: 0.5s }


Reply

RE: Lil help with CSS #8
In html, do this:
Code:
<div id=focus> your stuff here </div>
and css code
Code:
#focus { transition: 0.5s }


Reply

RE: Lil help with CSS #9
In html, do this:
Code:
<div id=focus> your stuff here </div>
and css code
Code:
#focus { transition: 0.5s }


Reply

RE: Lil help with CSS #10
(10-03-2013, 12:12 PM)Geoff Wrote: Mmmm why not use 2 different id's? one with the delay and one without it?

Because I want it to be on the same one.

Reply







Users browsing this thread: