PORT markup

Attachments

  • 1705108100163.png
    1705108100163.png
    251.2 KB · Views: 89
Last edited:
You can use a CSS injector (such as this one) and put the following to globally disable decoration (therefore underlining) on the page, although you can edit it to be more specific if you'd like.
CSS:
* {
    text-decoration: none !important;
}
 
Thanks, I don't want to lose underlining entirely (I do want it when pointing at a link).
Pair this with the other CSS I posted. Seems to be somewhat broken though, decorations may have the wrong color.
CSS:
a:hover {
    text-decoration: underline !important;
}
Haven't tried this because I don't care, but if I did, I would probably go with this solution since it doesn't require any addons.
 
You could try
CSS:
u tt { text-underline:none; }

What's really sad is that the
HTML:
tt
element has been obsolete for maybe 20 years.
Is text-underline a real property? I tried doing something like this (with text-decoration) and it didn't work, and this also doesn't work. I don't know why, seems like it should to me, but I'm no CSS expert.

I think it's interesting it has the tt style set to have underlining and a <u> element around it.
 
Back
Top