Project

General

Profile

Bug #91644

Updated by Henrik Elsner almost 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 -> screenshot 

 !Bildschirmfoto 2020-06-15 um 08.12.23.png! 

Back