Is this
border-radius:10px 10px 0 0;
A shortend version that will work with all browsers that recognise it to this:
border-top-left-radius:10px; border-top-right-radius:10px;
Is this
border-radius:10px 10px 0 0;
A shortend version that will work with all browsers that recognise it to this:
border-top-left-radius:10px; border-top-right-radius:10px;
Yes, it's better the first approach because it's shorter and waste less bandwith.
Yes they are identical just like there is padding-left there is border-top-left-radius.
If you really want the confidence of knowing that it will work on all the browsers that can support it, you should be using Compass.
© 2022 - 2024 — McMap. All rights reserved.