One minute
Styling Lessons
This is a living document of a bunch of styling quirks that I encounter
- Making the outline of an input field to a specified color
input:focus, input:focus-visible { box-shadow: 0 0 0 1px #c4c4c4; }
One minute
This is a living document of a bunch of styling quirks that I encounter
input:focus, input:focus-visible {
box-shadow: 0 0 0 1px #c4c4c4;
}