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

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

PREVIOUS NEXT
Code Example
Css :: change scrollbar color 
Css :: How to make blinking/flashing text with CSS 3 
Css :: comfirm before delete 
Css :: Warning: Failed child context type: Invalid child context `virtualizedCell.cellKey` of type `number` supplied to `CellRenderer`, expected `string`. 
Css :: center text horizontally and vertically inside a div in css 
Css :: text area focus css 
Css :: padding html 
Css :: css image background center horizontally in div 
Css :: css radio button size 
Css :: css background rainbow 
Css :: all ipad Resolutio css 
Css :: html list over three columns 
Css :: background-color: transparent; 
Css :: how to remove bullets from ul 
Css :: css text align 
Css :: css counters 
Css :: css how does hsl work 
Css :: insert background image css error 
Css :: Scroll background still 
Css :: round 2 corners of div css 
Css :: compass font awesome 
Css :: How to horizontally center an element 
Css :: ionic install font 
Css :: how to put image in button css 
Css :: @each scss 
Css :: text indent css 
Css :: css hover darken color 
Css :: flexbox align last item right 
Css :: aspect-ratio css 
Css :: bootstrap 4 material icon vertical align 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =