Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add progress to accent elements list #10646

Merged
merged 3 commits into from
Nov 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions files/en-us/glossary/accent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,3 @@ On the web, an accent is sometimes used in {{HTMLElement("input")}} elements for
### CSS related to the accent

You can set the color of the accent for a given element by setting the element's CSS {{cssxref("accent-color")}} property to the appropriate {{cssxref("<color>")}} value.

### HTML elements that may have an accent

- [`<input type="checkbox">`](/en-US/docs/Web/HTML/Element/input/checkbox)
- [`<input type="radio">`](/en-US/docs/Web/HTML/Element/input/radio)
- [`<input type="range">`](/en-US/docs/Web/HTML/Element/input/range)
9 changes: 8 additions & 1 deletion files/en-us/web/css/accent-color/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,17 @@ browser-compat: css.properties.accent-color
---
{{CSSRef}}

The **`accent-color`** [CSS](/en-US/docs/Web/CSS) property sets the color of the elements {{Glossary("accent")}}. An accent appears in elements such as {{HTMLElement("input")}} of [`type="checkbox"`](/en-US/docs/Web/HTML/Element/input/checkbox), or [`type="radio"`](/en-US/docs/Web/HTML/Element/input/radio).
The **`accent-color`** [CSS](/en-US/docs/Web/CSS) property sets the {{Glossary("accent")}} color for user-interface controls generated some elements.

{{EmbedInteractiveExample("pages/css/accent-color.html")}}

Browsers that support `accent-color` currently apply it to the following HTML elements:

- [`<input type="checkbox">`](/en-US/docs/Web/HTML/Element/input/checkbox)
- [`<input type="radio">`](/en-US/docs/Web/HTML/Element/input/radio)
- [`<input type="range">`](/en-US/docs/Web/HTML/Element/input/range)
- [`<progress>`](/en-US/docs/Web/HTML/Element/progress)

## Syntax

```css
Expand Down