Search
 
SCRIPT & CODE EXAMPLE
 

CSS

remove bootstrap button outline

.btn{
	box-shadow: none !important
}
Comment

how to remove bootstrap button outline

. btn:focus {
outline: none;
box-shadow: none;
}
Comment

bootstrap button outline

<button type="button" class="btn btn-outline-primary" href="#">Primary</button>
Comment

button outline bootstrap

Button-bootstrap

<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-danger">Danger</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-light">Light</button>
<button type="button" class="btn btn-outline-dark">Dark</button>
Comment

how to remove bootstrap button outline

.btn{
	box-shadow: none !important
    /* this how we remove bootstrap button outline */
}
Comment

PREVIOUS NEXT
Code Example
Css :: css rotate 90 degrees 
Css :: website make text not highlightable 
Css :: ignore cache pip 
Css :: css link 
Css :: boxshadow one side 
Css :: Tailwindcss version check 
Css :: display none but keep space 
Css :: grid center css 
Css :: responsive media qurries 
Css :: prevent screen reader from reading text out loud css 
Css :: css border top 
Css :: css element top layer 
Css :: textarea only one line 
Css :: box shador of one border css 
Css :: repeat with auto-fit 
Css :: table td remove unknown padding in td 
Css :: not(:last-of-type css) 
Css :: how to make smth be in the bottom of the page css 
Css :: posicionar div centro da tela 
Css :: media max width css 
Css :: how to serve css in golang 
Css :: how to get all values from object in javascript 
Css :: truncate in css 
Css :: how to move an image up in css 
Css :: css how to center a link 
Css :: center div inside div vertically and horizontally 
Css :: css selector not checked 
Css :: fade other items on hover 
Css :: css super smooth shadow 
Css :: center item 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =