Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to remove border on button click

.btnName{
	outline: none;
}
Comment

remove on click border

outline:none;
Comment

html button remove border on click

.x-btn:focus, .button:focus, [type="submit"]:focus {
   outline: none;
}
Comment

button remove border if click

<style>
input[type="button"]
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
Comment

remove clicked button border

<button style="outline: none;"></button>
Comment

PREVIOUS NEXT
Code Example
Css :: how to horizontal center a div in css 
Css :: css border radius not working 
Css :: remove all default styles from input 
Css :: ie11 flex 1 
Css :: css vw scrollbar 
Css :: css disabled cursor not allowed 
Css :: quitar borde a un boton css 
Css :: for sass 
Css :: rotate z axis css 
Css :: div overlfow scroll 
Css :: vue import css scoped 
Css :: repeating-linear-gradient 
Css :: css add shade over background image 
Css :: css space between child elements 
Css :: rgba blue colo 
Css :: how to add a linear gradient in css 
Css :: remove the outline from bootstrap input and input fields 
Css :: grid place between 
Css :: How to specify that the background image should be shown once, in the top right corner. 
Css :: what port does wss use 
Css :: css gradient bottom page 
Css :: !important css 
Css :: css textarea set max characters 
Css :: twig date modify 
Css :: how to put link at bottom of page html 
Css :: sass import variable from another file 
Css :: css delay between animation iterations 
Css :: flexbox navbar fixed top 
Css :: selecting last child css 
Css :: box shadow to table cell css 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =