I have been many days to figure out how to make visited hyperlink color change working in Chrome browser on the Windows 2012 Server.
Works well for Firefox, Internet Explorer, Safari, Opera...not for Chrome browser.
See the code:
<style type="text/css"> .hyper:link { color: #000!important; font-size: 13px!important; font-family: 'Tahoma'!important; } .hyper:visited { color: #cd000a!important; font-size: 22px!important; font-weight: 700!Important; font-family: 'Tahoma'!important; background-color : #BBB082!important; } .hyper:hover { color: #0026ff!important; cursor: pointer!important; } .hyper:active {*/ color:#316893!important; cursor: pointer!important; } </style> <asp:GridView ID="grdiview1" Height="357px" Width ="315px" runat ="server" AutoGenerateColum ...

Go to the complete details ...