0

How can I remove The outline from this select & options tags ?

I used

       .languages { //select tag
            border: none;
            background-color: $bg1;
            -webkit-appearance: none;

            &:focus {
                outline: none;
                border: none;
            }

            option { // doesn't work :(
                border: none;
                outline: none; 
            }
        }

I'm using plain html css and Js for a landing page

BenMorel
  • 34,448
  • 50
  • 182
  • 322
tal michel
  • 49
  • 4
  • When asking a question, people will be better able to provide help if you provide code that they can easily understand and use to [reproduce](https://stackoverflow.com/help/minimal-reproducible-example) the problem – Raju Ahmed Nov 18 '21 at 10:24
  • Maybe this [Link](https://stackoverflow.com/questions/7208786/how-to-style-the-option-of-an-html-select-element) can help you solve your problem – Hussein Nov 18 '21 at 12:55
  • thanks @Hussein it helped me understand that select is not very "CSS-able" and that i should look for a different solution – tal michel Nov 18 '21 at 14:02

0 Answers0