---
title: "Using fluid_styled_content"
manual: "TypoScript Explained"
version: "main"
permalink: "https://docs.typo3.org/permalink/t3tsref:using-fluid-styled-content@main"
source: "Guide/UsingFluidStyledContent/Index.rst"
modified: "2026-09-15T19:22:01+00:00"
---

# Using fluid_styled_content

It is worth taking a deeper look at the TypoScript of the system extension
[`typo3/cms-fluid-styled-content`](https://packagist.org/packages/typo3/cms-fluid-styled-content). It comes with
more than 900 lines of TypoScript code containing definitions for each type of
content element.

Although it may seem daunting, it is very instructive to review all this code,
as there is much to learn by example. To view the raw code, place yourself on
the root page of your website and move to the
**Sites > TypoScript** module. Then
choose the submodule **Included TypoScript** from the drop-down.

You should see a list of all used TypoScript records and files and how they possibly
include one another. All TypoScript is evaluated by TYPO3 CMS from top to
bottom.

![Screenshot of the module Sites > TypoScript > Included TypoScript](../../Images/ManualScreenshots/IncludedTypoScript.png)

With a click on the **{ }**,  "show code", button, you can view the content
of that TypoScript file.

As the TypoScript is split up in several files you can also use the
**{ + }**,  "show resolved code", button to show the code including all
its includes.

You will see that the set `set:typo3/fluid-styled-content` adds rendering
definitions for all
content elements. When rendering special content like file relations or menus
the concept of data processors is used. You can find out more about data
processors in the [manual of fluid_styled_content](https://docs.typo3.org/c/typo3/cms-fluid-styled-content/main/en-us/Index.html).

HTML purists may find that the set `set:typo3/fluid-styled-content` generates
too much markup.

It is perfectly possible to trim down this setup or write one's own entirely.
However this is not recommended for beginners.
