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

remove outline on button click

using outline:none; we can remove that border in chrome

for tailwind css :
outline-none 
focus:outline-none
Comment

PREVIOUS NEXT
Code Example
Css :: how to desactivate txt selection css 
Css :: css absolute position inside div 
Css :: error no 2058 plugin caching_sha2_password could not be loaded 
Css :: css how to hyperlink 
Css :: Media Query Smartphone Portrait 
Css :: bootstrap modal overflow 
Css :: input type (submit, button, reset) css 
Css :: css disabled hover style 
Css :: css set div width to screen 
Css :: conic gradient in css 
Css :: btn glow on hover 
Css :: list elements vertically in html 
Css :: import font in css 
Css :: CSS Text Shadow Effect( cool) 
Css :: css grid auto row 
Css :: preloader css 
Css :: css how to make text italic 
Css :: bootstrap class="mb-3" 
Css :: for...in...loop 
Css :: css make ul on multiple lines 
Css :: css grid container 
Css :: responsive gradient background css 
Css :: css button style rectangle 
Css :: how to make width equal to height css 
Css :: CSS 3D Transforms 
Css :: auto zoom image css 
Css :: what is the opacity of disabled text 
Css :: css blur overlay 
Css :: how to disable keyboard in windows 10 
Css :: how to color links 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =