0

Hello everyone You need to implement such a css construction via FormatStyle.

nav a:hover {
    text-decoration: underline;
}

For some reason, this design does not work:

formatStyle(
    'colname',
    # working
    cursor          = 'pointer',
    # not working
    hover           = list('text-decoration' = 'underline'))

Which one will work?

Avraam
  • 146
  • 1
  • 10

1 Answers1

0

Limitations of css itself. You need to declare a class to the column and write properties to this class in style.css.

Avraam
  • 146
  • 1
  • 10