It was my understanding that elements do not inherit the resize
property from their parent elements. However, I recently discovered that in Chromium they actually do:
Here is a screenshot of Chromium's inspector:
Check out this demo: http://jsfiddle.net/3rdj4/
When I looked it up on MDN, it stated that it is not inherited.
I then searched on w3c, and it also confirmed that it is not inherited.
So why is it different in Chromium?
Should I start using...
* {
resize: none;
}
... at the beginning of all my documents from now on?
Note: I am currently using Chromium 30.0.1592.0 (216775)