etoxin
etoxin

Reputation: 5274

Creating CSS3 round corners in Opera

i understand how to create CSS3 round corners in FF & webkit however how would one create them in opera purely with CSS3.

Upvotes: 1

Views: 438

Answers (2)

etoxin
etoxin

Reputation: 5274

Cheers, Turns out that Webkit(Chrome) beta now uses

border-radius:5px;

as well no need to use

-webkit-border-radius:5px;

neat. Mozilla will soon support this is guess.

Upvotes: 0

Marko
Marko

Reputation: 72222

Just use

border-radius: 5px; 

/* or if you need to specify individual corners */
border-radius: 1px 2px 3px 4px;

Upvotes: 4

Related Questions