Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 401 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 401 Bytes

accessible-outline

Usage

1. Include Accessible Outline JS

Preferably combined with the rest of your scripts.

<body>
    ...

    <script src="accessible-outline.min.js" async></script>
</body>

3. Include your CSS

Hide the outline from the elements you want. For example: we hide only the outline of a button.

.no-outlines {
    button {
    	outline: none;
	}
}