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

fix: HTML Validation issue #3041

Merged
merged 1 commit into from
Mar 12, 2021
Merged
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: 3 additions & 3 deletions files/en-us/web/css/color_value/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ <h3 id="Mozilla_System_Color_Extensions">Mozilla System Color Extensions</h3>
</dd>
<dt>-moz-win-accentcolor</dt>
<dd>
Used to access the Windows 10 custom accent color that you can set on the start menu, taskbar, title bars, etc.</p>
Used to access the Windows 10 custom accent color that you can set on the start menu, taskbar, title bars, etc.
</dd>
<dt>-moz-win-accentcolortext</dt>
<dd>
Expand Down Expand Up @@ -1335,8 +1335,8 @@ <h3 id="RGB_transparency_variations">RGB transparency variations</h3>
rgba(51, 170, 51, 1) <span style="background: rgba(51, 170, 51, 1);"> /* full opaque green */ </span>

/* Whitespace syntax */
rgba(51 170 51 / 0.4) /* 40% opaque green */
rgba(51 170 51 / 40%) /* 40% opaque green */
rgba(51 170 51 / 0.4) /* 40% opaque green */
rgba(51 170 51 / 40%) /* 40% opaque green */

/* Functional syntax with floats value */
rgba(255, 0, 153.6, 1)
Expand Down