Reputation: 5274
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
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
Reputation: 72222
Just use
border-radius: 5px;
/* or if you need to specify individual corners */
border-radius: 1px 2px 3px 4px;
Upvotes: 4