Search
 
SCRIPT & CODE EXAMPLE
 

HTML

how to disable a link

<style>
.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}
</style>
<a class="isDisabled" href="https://unfetteredthoughts.net">Disabled Link</a>
Comment

html disable anchor link

a.isDisabled {
  pointer-events: none;
}
Comment

how to disable link in hmtl

.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
  pointer-events: none;
}
Comment

PREVIOUS NEXT
Code Example
Html :: ionic deactivate fab button 
Html :: blue glow input boostrap 4 
Html :: bootstrap responsive table 
Html :: bootstrap latest version cdn 
Html :: disable autocomplete 
Html :: input limit file type html 
Html :: how to set an svg favicon in html 
Html :: change icon on button click 
Html :: input type=text height width html 
Html :: ion2 calendar change event 
Html :: tablas en html 
Html :: do you like grepper 
Html :: add manifist to html 
Html :: markdown bulleted list 
Html :: angular mat slide toggle get value 
Html :: onclick a tag 
Html :: html shopping cart icon 
Html :: tailwind flex column on mobile 
Html :: vertical line in html 
Html :: meta theme-color 
Html :: navbar bootstrap 
Html :: font awsome 
Html :: access particular array index in html template django 
Html :: display image in twig 
Html :: how to add an image in html 
Html :: input submit icon 
Html :: how to check if html table is empty using jquery 
Html :: how to make square in html 
Html :: react native text max rows 
Html :: two divs in the same place 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =