Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css remove border input focus

textarea:focus, input:focus{
    outline: none;
}
Comment

css input remove border on focus

input:focus {
  outline: none;
  box-shadow: none!important;
  /*Sometime the blue border you see is from the box-shadow and removing box-shadow will remove the border*/
}
Comment

remove focus border

*:focus {
  outline: none;
}
Comment

hide input border on focus

input:focus{
    border: none;
}
Comment

remove input border on focus

.yourInput:focus {
	outline: none;
}
Comment

remove input border on focus

.bootstrap-select .form-control:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option > div.filter-option-inner:focus {
    outline: 0px none #fff !important;
}

.bootstrap-select .form-control > div.filter-option > div.filter-option-inner > div.filter-option-inner-inner:focus {
    outline: 0px none #fff !important;
}
Comment

remove focus from input

// Use focus() && blur() to add or remove focus.
import { useRef } from "react"

const inputRef = useRef()

// To remove focus: inputRef.current.blur()
// To focus: inputRef.current.focus()
<input ref='inputRef' {...value} />
Comment

PREVIOUS NEXT
Code Example
Css :: how to set media query for both width and height in css 
Css :: css text limit 
Css :: centralizar div verticalmente css 
Css :: tzutc 
Css :: css shadow 
Css :: make an anchor tag inactive 
Css :: css table td width not working 
Css :: css glow effect 
Css :: ufw allow from subnet 
Css :: bootstrap 4 classes list with description pdf 
Css :: css animate flashing 
Css :: box shadow to make border bottom 
Css :: how to use bulma in gatsby 
Css :: como colocar o footer sempre no final da página 
Css :: who created css 
Css :: vertical-align table row 
Css :: div nebeneinander 
Css :: how to center a div vertically and horizontally 
Css :: css border on part of side 
Css :: css on hover do something to children 
Css :: gameloop programming language 
Css :: two background images css 
Css :: how to get all values from object in javascript 
Css :: css change image saturation 
Css :: Hide first of type elements using css , how to hide elements using css 
Css :: on clicking a link it gets red color 
Css :: make an image smaller css 
Css :: css text border 
Css :: padding clamp 
Css :: make button stretch to fit text 
ADD CONTENT
Topic
Content
Source link
Name
8+5 =