Within one of our projects, there is a <style>
tag placed at the beginning of a CSS file (for the purpose of ensuring CSS highlighting in certain text editors):
<style>
body {
...
}
....
Although I am aware that this is considered incorrect within a CSS file as it typically signifies inline CSS within HTML, it appears to be accepted (at least by Firefox 49) when the <style>
tag is placed inside the CSS include file at the start.
I am currently investigating whether it is necessary to rectify this in our project or if it can remain unchanged, especially if it is widely accepted (particularly by Firefox since version 26).