Will CSS3 browser-implementations be removed?

Shamil

Well-known member
Right now in the CSS, I am seeing horrible things, such as:


Code:
border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; -khtml-border-radius: 5px;


Will they be removed, and standardised to

Code:
border-radius: 5px;

soon?

I just like standards and non-proprietory implementations.
 
Yeah seriously I lost interest in this thread.

You do what works, without breaking anything, and built on the basis that it can be easily optimized later. This code is self-optimizing because it collapses if not needed by the browser. Excellent implementation.

NEXT!
 
Top Bottom