Inline title is not inline title element

What is really element of inline title
.i tried specific css code on the inline-title element but it’s not work
Testing works:

.inline-title {color: red;background: blue; direction: ltr !important;}

// The output of the inline title text color is red and the background color is blue. This applies to the full row width, not just the text area. Nothing else worked, so I think the issue is with the parent element, while the text itself is in a child element underneath it.

Sorry if there’s there any syntax issue in English because it’s not my language and I’m beginnier

The element is a full-width block. To limit the background to the length of the text, try:

.inline-title {
	color: red;
	background-color: blue;
	width: fit-content;
}