i am new at css and know all the shadowing, rotating etc but a basic thing i dont know....... like
1. how to add a onclick option in css like [.a:hover] hovers but [.a:onClick / mousedown / click] doesnt work
I want to animate my menu..
its a [ul li] menu and its dropdown works perfectly but i want to make dat dropdown a bit slow using css only
i am new at css and know all the shadowing, rotating etc but a basic thing i dont know....... like 1. how to add a onclick option in css like [.a:hover] hovers but [.a:onClick / mousedown / click] doesnt work
A click function requires javascript.
If you need the menu to animate using css only...use a css transition.
@Paulie_D give examples for both if u can please!
Where would be the fun in that.
Google is your friend.
Thank u.... got that yesterday
used this really worked
#box1 { display:none; } #box1:target { display:block; }Click Me