I’m trying to do a 3d mouseover effect when you’re over a DIV. Here’s what it’s look like for now
I would like to know how I could make in sort that the lower-left and top-right corner would have a cleaner shadow, oblique style. I thought maybe load a triangle on those corners but I would like to know if there’s any other way I could achieve that.
Thanks
If you don’t mind using pseudo-elements, there’s the
::beforeand::after(although note that, as I recall, IE doesn’t recognise the double-colon declaration, so you’d really have to use:beforeand:after):JS Fiddle demo.