CSS Focus better handling

المعرفة:: CSS
الحالة:: ملاحظة_مؤرشفة


By default, the outline of focus is ugly, it doesn’t match website styling and is always squared so it won’t appear nicely if an element has border radius. A better approach for handling focus is using the following:

*:focus {  
  outline: none;  
  box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.5);  
}  

Last update : August 14, 2023
Created : August 23, 2022

Comments

Comments