Bug #91644
Updated by Henrik Elsner over 4 years ago
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/Setup/Page/Index.html#cssinline-array In a setup with more than one cssInline data an issue occurs when a non closing css comment is used within a css definition that is not last. 'Hard' to describe, easy to understand with code and screenshot. <pre> cssInline { 1 = TEXT 1.value ( .inlineCssComment { display: block; } /* currently unused, but maybe needed later on. .foobar { display: block; } ) 2 = TEXT 2.value ( .test { display:block; } .test2 { display: block; } ) } </pre> results in <pre> <style type="text/css" id="inline-css"> /*additionalTSFEInlineStyle*/ .inlineCssComment { display: block; } /* currently unused, but maybe needed later on. .foobar { display: block; } .test { display:block; } .test2 { display: block; } </style> </pre> which disables all classes below the opening comment -> screenshot