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 :: Make the cursor appear as a crosshair on all links of the web page: 
Css :: css circle with number 
Css :: box model properties 
Css :: zoom level in css 
Css :: how to make image fit container css 
Css :: border buttom color 
Css :: jquery add external css to head 
Css :: css grid row height with repeat 
Css :: what port does wss use 
Css :: @supports css 
Css :: div inline grid 100% width 
Css :: css add space left 
Css :: media screen hp 
Css :: email background image 
Css :: css outline width 
Css :: position css 
Css :: can i use css in react native 
Css :: make input invisible but clickable css 
Css :: remove bg color with css 
Css :: install tailwind css in react 
Css :: css a link style 
Css :: vh and vw 
Css :: have unordered list horizontal css 
Css :: how to add color in css 
Css :: error no 2058 plugin caching_sha2_password could not be loaded 
Css :: css hover a class change effect in another class 
Css :: css cursor delete 
Css :: how to space out buttons css 
Css :: custom taxonomy pagination 404 
Css :: show arrow on hover css 
ADD CONTENT
Topic
Content
Source link
Name
6+2 =