
Announcements
This is a known issue with the HTML Text control in Power Apps—since it's primarily a rendering element, it does not automatically receive focus, and screen readers like Narrator often skip over it unless the user manually interacts with it.
Here are some ways you can make the content accessible to a screen reader:
Since a regular Label control supports screen readers, you can add a label with the same content as the HTML Text control but keep it hidden.
Text property to the same value as the HTML Text control:false so it doesn't affect UI layout.0 so it can be navigated to.This way, the screen reader will read the content from the label even though it's hidden from the visual UI.
If you want the user to be able to focus on the HTML Text control via the keyboard, you can:
Place a Button or an invisible Text Input next to the HTML control.
Use a Select() function to move focus when the screen loads.
Steps:
Visible = false if necessary).AccessibleLabel) that describes the content.If interactivity isn't an issue, you can use a Rich Text Editor control instead of an HTML Text control:
Set:
And ensure TabIndex = 0 so it can be navigated.
If you are using HtmlText with raw HTML, check that it contains ARIA roles and semantic elements like <p>, <h1>, <div role="document">, etc.
For example:
If it's wrapped in an incorrect or unsupported element (e.g., <span>), screen readers might skip it.
The best approach depends on your needs: