Typo3 Snippets  >  Snippets  >  Generelle Konfiguration  >  CSS-Verweis per TypoScript einbinden

CSS-Verweis per TypoScript einfügen

Um eine (oder mehrere) CSS-Dateien per TypoScript-Code einzufügen, kann man im SETUP-Feld folgenden Code einfügen.

page.includeCSS {
  file1=fileadmin/templates/standard.css
  file1 {
      title=MainStyle
      media=all
  }
  file2=fileadmin/templates/typo3zusatz.css
  file2 {
      title = MainStyle
      media = all
  }
}


Der Pfad (file1, file2,...) muss natürlich entsprechend angepasst werden.