Search
 
SCRIPT & CODE EXAMPLE
 

CSS

remove blue border on a input

input:focus {
    outline: none !important;
}
Comment

delected blue border when an input is selected

//SCSS format

input{
  &:focus { 
    outline: none !important;
    }
}
textarea{
  &:focus { 
    outline: none !important;
    }
}

Comment

PREVIOUS NEXT
Code Example
Css :: Media Query smartphone only 
Css :: repeating-linear-gradient 
Css :: css get the image to the center and to make it relative to the width of the parent. 
Css :: css box shadow from all sides 
Css :: css add shade over background image 
Css :: css hover darken color 
Css :: css align bottom of container 
Css :: how to add a shadow behind text in css 
Css :: transform:translateX() 
Css :: inherit class in sass 
Css :: css font 
Css :: space between text css 
Css :: print media query css 
Css :: font-face html 
Css :: form layout with glassmorphism css 
Css :: cursor as image css 
Css :: css gradient bottom page 
Css :: how to remove lines from textarea 
Css :: how to install tailwind css in html 
Css :: change image with css 
Css :: beautiful navigation bar css 
Css :: css text rotate 
Css :: css media queries mobile first 
Css :: import font css from url 
Css :: scss responsive container 
Css :: style scrollbar 
Css :: auto suggestion in jupyter notebook 
Css :: remove clicked button border 
Css :: textarea scale to content 
Css :: CSS Conic Gradients 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =