WP 网站上元素 CSS Bootstrap 4 周围出现奇怪的紫色方块

Strange purple squares appearing around elements CSS Bootstrap 4 on a WP website

我注意到在某些浏览器和某些网站上,将 Bootstrap 4 作为框架包含在内,在 WordPress 网站上,某些元素在被访问时会出现一些奇怪的紫色方块。你知道为什么以及如何删除它们吗?这是一张照片,我在前端找不到它:

它不是边框,也不是背景色,它是轮廓

从您的店面更改此代码style.css(第 411 行)

a:focus, input:focus, textarea:focus, button:focus {
    outline: 2px solid #96588a;
        outline-color: rgb(150, 88, 138);
}

a:focus, input:focus, textarea:focus, button:focus {
    outline: 0px solid #96588a;
        outline-color: rgb(150, 88, 138);
}