admin管理员组文章数量:1346195
I want to add a small offset to the focus-ring for better accessibility (increased visibility of the focus outline around a button with white space in between the button and the outline). I have a scss file set up for Bootstrap modifications but am not sure how to add an offset any time the focus-ring is used. Or is there a better way to create the white space I’m going for in Bootstrap?
Example of how it is currently - outline is touching the element
Example of how I want it to be - outline is offset with whitespace between the element and outline
I want to add a small offset to the focus-ring for better accessibility (increased visibility of the focus outline around a button with white space in between the button and the outline). I have a scss file set up for Bootstrap modifications but am not sure how to add an offset any time the focus-ring is used. Or is there a better way to create the white space I’m going for in Bootstrap?
Example of how it is currently - outline is touching the element
Example of how I want it to be - outline is offset with whitespace between the element and outline
Share Improve this question edited 2 days ago Luke K asked 2 days ago Luke KLuke K 215 bronze badges New contributor Luke K is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 4 |1 Answer
Reset to default 1I solved it by overriding the Bootstrap CSS turning off the box-shadow that Bootstrap uses and adding an outline with an offset. Is there a more elegant way to do this other than overriding Bootstrap with !important?
*:focus-visible {
box-shadow: none !important;
outline: 3px solid black !important;
outline-offset: 2px !important;
}
本文标签: cssHow to add outlineoffset to Bootstrap5 focusringStack Overflow
版权声明:本文标题:css - How to add outline-offset to Bootstrap-5 focus-ring? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743821151a2544811.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
!important
or by compiling the source with your changes. Example – IT goldman Commented 2 days ago