---
title: "Breaking: #98312 - TypoScript setting page.CSS_inlineStyle removed"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-98312-1662725671"
source: "Changelog/12.0/Breaking-98312-TypoScriptSettingPageCSS_inlineStyleRemoved.rst"
typo3-version: "12.0"
typo3-major: 12
type: "breaking"
issue: 98312
forge: "https://forge.typo3.org/issues/98312"
tags: ["TypoScript", "FullyScanned", "ext:frontend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Breaking: #98312 - TypoScript setting page.CSS_inlineStyle removed {#breaking-98312-1662725671}

See [forge#98312](https://forge.typo3.org/issues/98312)

## Description {#description}

The TypoScript setting `page.CSS_inlineStyle` which was used to
inject an inline CSS string into the TYPO3 Frontend has been removed.

## Impact {#impact}

Using this setting has no effect anymore since TYPO3 v12.

## Affected installations {#affected-installations}

TYPO3 installations having this option set in their TypoScript setup.

## Migration {#migration}

Use `page.cssInline` instead, which has been around for many
TYPO3 versions already.

The superior setting `page.cssInline` allows to use
`stdWrap` and `cObject`.

Example for migration:

```typoscript
page.CSS_inlineStyle = a { color: red; }

page.cssInline.100 = TEXT
page.cssInline.100.value = a { color: red; }
```
