Styling Hyperlinks
Setting styles for hyperlinks

Last updated
Was this helpful?
Setting styles for hyperlinks

Last updated
Was this helpful?
Was this helpful?
<style>
a {
color: #3E8ADB;
}
a:hover {
color: #DB3E99;
text-decoration: underline;
}
/* For other elements in a hyperlink */
a>div {
color: #3E8ADB !important;
}
a>div:hover {
color: #DB3E99 !important;
text-decoration: underline;
}
</style>