Search
 
SCRIPT & CODE EXAMPLE
 

CSS

focus selector css

The :focus selector is used to select the element that has focus.

The :focus selector is allowed on elements that accept keyboard events or other user inputs.

/* example */

:focus{
    outline: 3px solid black;
    outline-offset:3px;
}
Comment

css focus

/* Cible n'importe quel élément <input> */
/* uniquement lorsqu'il a le focus */
input:focus {
  color: red;
}
Comment

PREVIOUS NEXT
Code Example
Css :: text slide animation css 
Css :: portfolio website html css 
Css :: css when i add a border radius to input problem 
Css :: display flex align last item to left 
Css :: text shadow in css 
Css :: css line-through color 
Css :: make text available only to screen reader 
Css :: css 2 div cote à cote 
Css :: remove black border from border css 
Css :: justify xd 
Css :: css accent 
Css :: bootstrap text truncate after 3 lines 
Css :: How to keep same background-image ratio/size on all different screen sizes? 
Css :: scrollbar with 2 different colors on same page css 
Css :: css italics 
Css :: npm next-css 
Css :: modern css fonts 
Css :: css box shadow transform rotate 
Css :: how to use hr lines in a class css 
Css :: css image responsive on screen zoom 
Css :: NeuMorphisme button code 
Css :: css multiple classes same rule 
Css :: css z-index property 
Css :: Every user on your website has an image avatar that is displayed when 
Css :: delete a process in ubuntu 
Css :: position absolute above everything 
Css :: max with in bootstrap 4 
Css :: div with specific id css 
Css :: animation-delay in css 
Css :: css height 100 not working 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =