Created
September 25, 2015 06:14
-
-
Save Itachi261092/ebeb063120d1de7051d6 to your computer and use it in GitHub Desktop.
[CSS] Disabled link / Неактивная ссылка
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.disabled { | |
pointer-events: none; /* делаем ссылку некликабельной */ | |
cursor: default; /* устанавливаем курсор в виде стрелки */ | |
color: #999; /* цвет текста для нективной ссылки */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment