Source code

Revision control

Copy as Markdown

Other Tools

# MozMessageBar
`moz-message-bar` is a versatile user interface element designed to display messages or notifications.
These messages and notifications are nonmodal, and keep users informed without blocking access to the base page.
It supports various types of messages - info, warning, success, and error - each with distinct visual styling
to convey the message's urgency or importance. You can customize `moz-message-bar` by adding a message, message heading,
`moz-support-link`, actions buttons, or by making the message bar dismissable.
```html story
<moz-message-bar dismissable
heading="Heading of the message bar"
message="Message for the user">
</moz-message-bar>
```
## When to use
* Use the message bar to display important announcements or notifications to the user.
* Use it to attract the user's attention without interrupting the user's task.
## When not to use
* Do not use the message bar for displaying critical alerts or warnings that require immediate and focused attention.
## Code
The source for `moz-message-bar` can be found under
You can find an examples of `moz-message-bar` in use in the Firefox codebase in
`moz-message-bar` can be imported into `.html`/`.xhtml` files:
```html
<script type="module" src="chrome://global/content/elements/moz-message-bar.mjs"></script>
```
And used as follows:
```html
<moz-message-bar dismissable
heading="Heading of the message bar"
message="Message for the user">
</moz-message-bar>
```
### Fluent usage
Generally the `heading` and `message` properties of
To get this working you will need to specify a `data-l10n-id` as well as
`data-l10n-attrs` if you're providing a heading and a message:
```html
<moz-message-bar data-l10n-id="with-heading-and-message"
data-l10n-attrs="heading, message"></moz-message-bar>
```
In which case your Fluent messages will look something like this:
```
with-heading-and-message =
.heading = Heading text goes here
.message = Message text goes here
```