focus on div css code example
Example 1: diable focus button css
*:focus {
outline: 0 !important;
}
Example 2: input focus css default
/* This removes all focus effects */
element:focus {
outline-style: none;
box-shadow: none;
border-color: transparent;
}