1. Add the private prefix, any version of the browser can read and execute this property?
In my understanding, add the private attribute is to allow the browser to perform those who have not yet released in w3c standard, is comparatively mature but the properties of the border - the radius, for example, in the new version of the browser has to fully support, I now is whether to add browser private prefix to border - the radius? (in case of low version of the browser does not support?
Secondly, isn't as long as I added a private prefix to the browser, for example - ms - border - the radius, low version of the ie browser can also support? (add - its -, low version of the chrome can also support?)
on this issue, I try to call ie console, use ie version history test, found in style, if only to - ms - border - the radius: 50%; , 6, 7, 8, 9, 11 are unable to display the circular, is this why?
But only write a border - the radius: 50%, ie 9/11 can display circular (this is normal),
<meta charset="utf-8" & gt;
<meta name="viewport" content="width=device - width, initial - scale=1.0" & gt;Document
<style>
Div {
width: 500px;
height: 500px;
background-color: green;
- ms - border - the radius: 50%;
/* border - the radius: 50% *//* if only write this sentence is normal */
}
</style>
<body>