Skip to content

Instantly share code, notes, and snippets.

@ryanve
Last active September 16, 2017 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanve/03a626385806493c9779458593e3ba9c to your computer and use it in GitHub Desktop.
Save ryanve/03a626385806493c9779458593e3ba9c to your computer and use it in GitHub Desktop.
LinkedIn's accessible modal X close button svg icon markup
<button type="button" name="cancel" class="send-invite__cancel-btn" data-ember-action="" data-ember-action-3746="3746">
<span class="svg-icon-wrap">
<span class="visually-hidden">Close</span>
<li-icon aria-hidden="true" type="cancel-icon">
<svg viewBox="0 0 24 24" width="24px" height="24px" x="0" y="0" preserveAspectRatio="xMinYMin meet" class="artdeco-icon">
<g class="large-icon" style="fill: currentColor">
<path d="M20,5.32L13.32,12,20,18.68,18.66,20,12,13.33,5.34,20,4,18.68,10.68,12,4,5.32,5.32,4,12,10.69,18.68,4Z"></path>
</g>
</svg>
</li-icon>
</span>
</button>
<button class="artdeco-dismiss">
<li-icon aria-hidden="true" type="cancel-icon">
<svg viewBox="0 0 24 24" width="24px" height="24px" x="0" y="0" preserveAspectRatio="xMinYMin meet" class="artdeco-icon">
<g class="large-icon" style="fill: currentColor">
<path d="M20,5.32L13.32,12,20,18.68,18.66,20,12,13.33,5.34,20,4,18.68,10.68,12,4,5.32,5.32,4,12,10.69,18.68,4Z"></path>
</g>
</svg>
</li-icon>
<span class="a11y-text">Dismiss</span>
</button>

<button>

<button> provides perfect semantics.

span wrap

.svg-icon-wrap provides a hook used for styling as inline-block

span text

.visually-hidden provides accessible text for voice

custom element

[aria-hidden="true"]

<svg>

fill

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment