Site icon T4Tutorials.com

CSS to change color of hyperlinks on th table header

CSS code to change the color of hyperlinks on th table header:

To change the color of hyperlinks in a table header (th) element in CSS, you can use the followings pseudo-classes to target different states of the hyperlink.

 

For example:

th a:link {

  color: blue;

}

th a:hover {

  color: green;

}

th a:active {

  color: yellow;

}

th a:visited {

  color: pink;

}

You can also use the color property to change the color of all hyperlinks within a table header at once, like so:

th a {

  color: green;

}

 

This will change the color of all hyperlinks within the table header to green, regardless of their state.

 

 

Exit mobile version