---
title: "Feature: #61577 - Backend markup for checkboxes with labels"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-61577"
source: "Changelog/7.0/Feature-61577-BackendMarkupForCheckboxesWithLabel.rst"
modified: "2026-09-15T10:46:36+00:00"
---

# Feature: #61577 - Backend markup for checkboxes with labels

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

## Description

A typical checkbox with label form element should now be rendered as:

```html
<div class="checkbox">
	<label for="someId">
		<input type="checkbox" id="someId" />
		Label text
	</label>
</div>
```

## Impact

If this HTML markup is applied, CSS styles by the TYPO3 core will take care of optimized view
and custom CSS has become obsolete.
