# contentContainer

> Child elements are added to it, usually this is the same as the element itself.

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine.UIElements](/engine/6000.0/script-reference/unityengine/uielements.md)
* **Assembly:** UnityEngine.UIElementsModule

```csharp
public virtual VisualElement contentContainer { get; }
```

### Remarks

When iterating over the  [VisualElement.Children](/engine/6000.0/script-reference/unityengine/uielements/visualelement/children.md) of an element, the element's content container hierarchy is used instead of the element itself. This can lead to unexpected results, such as elements being ignored by the navigation events if they are not directly in the content container's hierarchy. Refer to [IFocusRing](/engine/6000.0/script-reference/unityengine/uielements/ifocusring.md) for more information.

If the content container is the same as the element itself, child elements are added directly to the element. This is true for most elements but can be overridden by more complex types.

The [ScrollView](/engine/6000.0/script-reference/unityengine/uielements/scrollview.md), for example, has a content container that is different from itself. In that case, child elements added to the scroll view are added to its content container element instead. While the physical parent ([VisualElement.Hierarchy.parent](/engine/6000.0/script-reference/unityengine/uielements/visualelement/hierarchy/parent.md)) of the child elements is the scroll view's content container element, their logical parent ([VisualElement.parent](/engine/6000.0/script-reference/unityengine/uielements/visualelement/parent.md)) still refers to the scroll view itself. Since some of the scroll view's focusable children are not part of its logical hierarchy, like its [Scroller](/engine/6000.0/script-reference/unityengine/uielements/scroller.md) elements, these focusable children are not considered by default when using sequential navigation. Refer to [How can I change what element is focused next](/engine/6000.0/manual/uitoolkits/uielements/uie-support-for-runtime-ui/uie-render-runtime-ui/uie-faq-event-and-input-system.md) for an example of a workaround solution if the default navigation rules don't correspond to your needs.

Additional Resources: [VisualElement.hierarchy](/engine/6000.0/script-reference/unityengine/uielements/visualelement/hierarchy-1.md), [VisualElement.Children](/engine/6000.0/script-reference/unityengine/uielements/visualelement/children.md)
