I pointed to border-radius
. However, it did not work everywhere. In the webkit, he furychit, and in the donkey 9, for example, no. It seems to me that this is due to absolute positioning. How to fix?
ps position can not be changed.
No, nothing to do with positioning (although it is possible with donkeys). This is due to the fact that this CSS3
property, although indicated as supported by all browsers, is in fact not so. Well, so happened. The standard is not accepted - browsers "fight" among themselves. Something I got into philosophical conversations.
My advice is to add vendor prefixes to the styles, for example:
-webkit-border-radius: 2px; -moz-border-radius: 2px; -ms-border-radius: 2px; -o-border-radius: 2px; border-radius: 2px;
Or use PIE.js
- a very useful plugin.
Source: https://ru.stackoverflow.com/questions/160271/
All Articles
border-radius
? Or with the-moz-
and-webkit-
too? - Crasher