Do I need to include a special tag for css3 at the top of the page
No
which browsers currently support
Most browsers support some CSS 3. No browser supports all CSS 3. When tracks can be used , when support for various functions was added.
what happens if you use many css3 functions and browse people in old brosers.cause any error or so
If the browser does not work solely with an error, CSS error handling rules will apply and the unrecognized thing will be ignored.
This is only a problem if another style (which is applicable) makes the content unreadable unless an unsupported style is applied. This can probably be circumvented sometimes by applying the same property twice. First with widely supported values, and then with less widely supported values: for example:
color: white; background: url(blue_0.5_pixel.png); background: rgba(0%, 0%, 100%, 0.5);
Should I really use it or not
This must be determined in each case.
source share