The vlink attribute means the visited link. This is used to style a link that you have previously visited.
Syntax : #
<body vlink="color"> </body>
Note : The vlink attribute is not supported in HTML5. Instead of using vlink attribute we can use CSS :visited pseudo class.
The vlink attribute of body element adds color to the visited links in a document. The example is given below.
<body vlink='orange'>
<a href="https://www.3schools.in">
Visit 3schools
</a>
</body>
Supported Browsers #
The vlink attribute is supported in all browsers.
| Google Chrome | Internet Explorer | Firefox | Safari | Opera |
| Yes | yes | yes | yes | yes |
Comments (0)