tags:

views:

69

answers:

3

Like rounded corner,any more?

+1  A: 

Is it me or do people not use google ? http://www.html.it/articoli/nifty/index.html

JonH
What is this "google" you speak of? ;-)
itsmatt
+1  A: 

For CSS3:

.box { border:1px solid black; border-radius:15px; -moz-border-radius:15px; -webkit-border-radius:15px; }

See http://afifoam.com/

CodeJoust
+1  A: 

You should consider studying some more CSS and CSS scripting and maybe some graphic design, although you can find some ideas here:

CSS Zengarden

CSS3 preview

In general with CSS3 there are some new features like:

  • rounded corners
  • font shadow
  • custom fonts
  • box shadow
  • text overflow
Lex