If we want to open the link in new tab then we have to use target="_blank" property in anchor tab. Below is the code.
HTML:
CSS for anchor tag:
/* unvisited link */ .anchor-box a:link { color: green; } /* visited link */ .anchor-box a:visited { color: #776655; } /* mouse over link */ .anchor-box a:hover { color: red; } /* selected link */ .anchor-box a:active { color: yellow; }
Output:
If we want to change text-decoration in anchot tag.
Default text-decoration comes text-decoration: underline; if you want to remove unaderline, we have to use text-decoration: none; is our css. Like below
.anchor-box a:link { color: green; text-decoration: none; }
If we want a line in over the link, then we can set as below
.anchor-box a:link { color: green; text-decoration: overline; }
If we want to create link line-through, then we can change like-
.anchor-box a:link { color: green; text-decoration: line-through; }
We can also change anchor tag background color;
.anchor-box a:link { background-color: red; color: #ffcc77; text-decoration: none; }
we can also change it font family
.anchor-box a:link { background-color: red; color: #ffcc77; text-decoration: none; font-family: Verdana; }
No comments:
Post a Comment