---
title: "Feature: #51905 - Add dependencies between classes in the Rich Text Editor"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-51905"
source: "Changelog/7.0/Feature-51905-AddDependenciesBetweenClassesInRte.rst"
typo3-version: "7.0"
typo3-major: 7
type: "feature"
issue: 51905
forge: "https://forge.typo3.org/issues/51905"
tags: ["TSConfig", "RTE", "Backend"]
rendered: "2026-09-20T18:31:11+00:00"
---

# Feature: #51905 - Add dependencies between classes in the Rich Text Editor {#feature-51905}

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

## Description {#description}

It is now possible to configure a class as requiring other classes.

The syntax of this new property is

```typoscript
RTE.classes.[ *classname* ] {
    .requires = list of class names; list of classes that are required by the class;
        if this property, in combination with others, produces a circular relationship, it is ignored;
        when a class is added on an element, the classes it requires are also added, possibly recursively;
        when a class is removed from an element, any non-selectable class that is not required by any of the classes
        remaining on the element is also removed.
}
```

## Impact {#impact}

There is no impact on previous configurations.
