Answers for "html select disabled but clickable"

1

disabled a click

// CSS
.not-active {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: black;
}

// HTML
<a href="link.html" class="not-active">Link</a>
Posted by: Guest on October-29-2020
4

html select option disabled selected

<option selected disabled>Choose Tagging</option>
Posted by: Guest on March-02-2021

Code answers related to "html select disabled but clickable"

Browse Popular Code Answers by Language