﻿---
title: ARIA Attributes
guid: 394c9fd5-c332-4a82-b02f-54cf030735d8
----
# ARIA Attributes
We have some simple styling for basic aria attributes


## Hidden
A hidden div
```html
<div aria-hidden="true">This div is hidden</div>
```

## Visible
A visible div
```html
<div aria-hidden="false">This div is visible</div>
```