text-decoration property #192
Answered
by
layershifter
djayMehrotra
asked this question in
Q&A
-
how to use text decoration property? |
Beta Was this translation helpful? Give feedback.
Answered by
layershifter
Aug 12, 2022
Replies: 1 comment 1 reply
-
FYI: I created an issue to create a helper, #193. Until the helper function is there - you need to use CSS longhands directly, for example: makeStyles({
root: {
// instead textDecoration: 'underline',
textDecorationLine: 'underline',
}
}) You can use Chrome/Devtools as a guide, for example: |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
layershifter
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI: I created an issue to create a helper, #193.
Until the helper function is there - you need to use CSS longhands directly, for example:
You can use Chrome/Devtools as a guide, for example: