Archived topic
enumeration underline links
3 replies · Started by Roland on December 17, 2019
I have some enumerations in my text. In the enumeration there are links. How can i get them to be underlined. For the other links in the text i use
p a:link, p a:hover, p a:active, p a:visited {
text-decoration: underline;
text-decoration-color: currentColor;
}
Hi there,
you would use this CSS selector to target the links in the table:
td a:link
Hi David,
for a table a perfect solution. It works. But for a normal enumeration in a continuous text like
text text text
- link
- link
- link
text text text
i don´t see any solution
Are we talking about a numbered list? If so, try this:
ol a