Will CSS3 browser-implementations be removed?

Shamil

Well-known member
Licensed customer
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!
 
...we also do it for box-shadow, box-sizing and all the individual corner versions of border-radius (border-top-left-radius etc.)
  • border-radius
  • box-shadow
  • box-sizing
Kier, it's all or there are other properties?

transition
opacity
background (-moz-linear-gradient etc.)
 
Back
Top Bottom