“CSS Wyłącz tekst” Kod odpowiedzi

Nie wybierz CSS

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}
Different Dingo

Wyłącz wybrany tekst CSS

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
|_Genos_|

CSS Wyłącz tekst

  -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 */ 
Rudolph Steyn

Wyłącz wybór tekstu

#example {
  user-select:none;
}
Caz

Wyłącz wybór tekstu

user-select: none;
Marton

Odpowiedzi podobne do “CSS Wyłącz tekst”

Pytania podobne do “CSS Wyłącz tekst”

Więcej pokrewnych odpowiedzi na “CSS Wyłącz tekst” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu