Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to remove border on button click

.btnName{
	outline: none;
}
Comment

how to remove border in button html

padding: 0;
border: none;
background: 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 :: css mobile friendly 
Css :: minmax in grid 
Css :: css photo circle 
Css :: css full cover background image 
Css :: how to make background more darker with css 
Css :: how to add box shadow to all sides css 
Css :: width clamp css 
Css :: remove underline from <a HTML 
Css :: google font roboto 
Css :: rust get current date 
Css :: beige hex code 
Css :: text align left in span 
Css :: box shadow 
Css :: css media queries pc and mobile 
Css :: react native flatlist styled height fit content 
Css :: gulp with pm2 
Css :: decrease space between paragraphs html 
Css :: change color to white svg with filter 
Css :: how to change what twine looks like 
Css :: ! [remote rejected] master - master (Working directory has unstaged changes) 
Css :: centralize div inside div 
Css :: css first of type 
Css :: easiest way to invert css to dark mode 
Css :: padding top 
Css :: reduire espace entre ligne css 
Css :: curved lines css 
Css :: scroll x css 
Css :: opacity color 
Css :: reset all input styles with 1 property css 
Css :: blink css 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =