views:

67

answers:

4

I have been using border-radius and box-shadow effects of moz and webkit.

//For rounded corners
  -moz-border-radius:4px;
  -webkit-border-radius:4px;
//For shadow effect
  -moz-box-shadow:2px 2px 5px #000;
  -webkit-box-shadow:2px 2px 5px #000;

Anyother unknown css effects of moz and webkit.

EDIT:
I have got some more css properties here

A: 

You might want to just type "CSS 3" into google and start from there. Or you can have a look at:

http://css3please.com/

and play live with different CSS3 properties and see how the affect the box in real-time.

Erik
+1  A: 

You seem to be wanting to know more CSS3 information, so this would be a good place to check. Some other neat things are gradients, columns, multiple backgrounds, text shadow and my favorite @font-face.

Robert
A: 

If you thought that was cool then this site will blow your mind.

Andrew Dunn
+2  A: 

-webkit-transform, -moz-transform, and -webkit-transition are always fun to play with.

-webkit-box-reflect is also neat, as is -webkit-canvas, and Mozilla has the even more powerful -moz-element.

As others have mentioned, you should take a look at CSS3 (and the standards as well, though many of those are still in progress); much of it has been implemented in Webkit and Mozilla, and some in Opera and IE9 as well.

Brian Campbell