What Should Be Avoided
HTML/CSS
<style>
*:focus {
outline: none;
}
</style>
Explanation:By applying outline: none on all elements, the default outline of the browser won't show once the focus arrives on elements. Authors have a tendency to turn off this rule to enhance the design of the website. However, this is a failure of this success criterion.