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?