I'm currently working on a responsive website using Bootstrap 4, but I'm struggling to remove all outlines when clickable elements are clicked. Despite my attempts with the following code snippet, it doesn't seem to work:
*,
*:focus {
outline: none !important;
-webkit-outline: none !important;
-moz-outline: none !important;
-ms-outline: none !important;
-o-outline: none !important;
}
Since I do utilize borders in my design, I'd prefer not to use border: none
.
Attached is a screenshot of how the site appears on my mobile device (iPhone XR) running Chrome: https://i.sstatic.net/ppCCs.jpg