Answers for "how to disable the select option via css"

CSS
1

css disable text select

-webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */
Posted by: Guest on June-24-2021
1

how to disable css-select select box

.nav-tab-dropdown .cs-select .cs-placeholder {
  pointer-events: none;
}
Posted by: Guest on March-29-2022

Code answers related to "how to disable the select option via css"

Browse Popular Code Answers by Language