I'm trying to make text blink so as to draw the user's eye to it, but the text-decoration-line doesn't do anything when set to blink, despite all other variables applying correctly.
I found this question that says IE doesn't support it, so do no Microsoft products support it at all? Should I try and invest time in making a css animation instead?
HTML Code:
<p class="loading-text">@LoadingMessage</p>CSS Class:
.loading-text { margin-bottom: 6px; text-decoration-line: blink; color: #26b050; text-decoration-style: double; position: center; text-align: center;}(The color was randomly picked so I could be confident the class was actually being applied correctly).