How to remove black border on click - HTML
gmatg
-
HtaProduction -
HtaProduction -
Hi everyone!!
I'm reaching out because I can't find an answer to my problem...
I would like to remove that darn black border when I click on my buttons.
I've already tried with
If anyone has the answer to my problem, I'd appreciate it :-)
Thank you all
I'm reaching out because I can't find an answer to my problem...
I would like to remove that darn black border when I click on my buttons.
I've already tried with
outline-style: none;, but it doesn't work.
If anyone has the answer to my problem, I'd appreciate it :-)
Thank you all
3 answers
-
Hello,
it's not outline-style .. but just outline
for example:input[type="button"] { border: none; outline:none; }
--
Best regards,
Jordane -
Hi, I had already tested this solution but it doesn't work...
Do you have another solution?
Thank you.-
-
-
-
-
Try with
.activity:focus{ outline:none !important; }
And place your CSS call (I assume it is in Accueil.css) after all other CSS.
As a reminder, the last CSS read is the one that will be applied in case you have other rules in the previous CSS...
So by placing your CSS at the end, it will therefore be prioritized.
-
-