CSS3 has the best features in it as multiple column concept and 2D/3D Transformations.
The CSS3 also has all the features which are existing in older version of CSS.
Most of all the browsers supports CSS3 features.
CSS3 Borders
CSS3 Borders helps in rounded corner border of division or any section this is achieved using -moz-border-radius as follows
Which results as follows
hello from rounded corner division
Even border shadow can be implemented to any border using -moz-box-shadow
Which results as follows
hello from shadow division
CSS3 allows for 2d/3d Transforms which helps in giving the best look to any document.
This is performed using the transform tag.
CSS3 Transform Rotate
Example
hello from rotated div
CSS3 Transform Translate
Which results as follows
hello from rotated div
CSS3 Transform Scale
hello from scaled div
CSS3 Transform Skew
Which results as follows
hello from skewed div
CSS3 Transition is a fantastic feature of CSS3 which allows a animated effect to a division.This is achieved using the transition tag.
Copy and paste the below piece of code to know the effect
transition-property
Specifies the name of the CSS property to which the transition is applied
transition-duration
Defines the length of time that a transition takes. Default 0
transition-timing-function
Describes how the speed during a transition will be calculated. Default "ease"
transition-delay
Defines when the transition will start. Default 0