View Full Version : Cursor Hover


Sum1YouDontKno
08-20-2003, 05:23 AM
I looked at lissa help forum under CSS, but i didnt quite get it...
On my links, i want the cursor to point: South west and north east..i tried this:

style type="text/css">hover:ne-resize,sw-resize</style>

lol i was guessing if that would've worked, but it didnt. Could neone tell me the correct code?

kittycat
08-20-2003, 05:47 AM
You can only have one... the correct code would look like:

<style type="text/css">
a:hover {
cursor: ne-resize;
}
</style>

Sum1YouDontKno
08-20-2003, 06:22 AM
Hmmm.. I saw on some sites they have a cursor pointing both ways, is that possible with a simple code, or something??

kittycat
08-20-2003, 06:58 AM
the cursor has an arrow on both ends, so it will 'point' both directions that you want considering that they are opposites.

Sum1YouDontKno
08-21-2003, 06:05 AM
Thanx, it werked

fruitcake
08-21-2003, 09:56 AM
You can use cursor: move, and you'll get it pointing in all four directions =)