Hello. I'm trying to put a style in the links of my website, but when I open the site does not apply the changes I put through the css. I used the following code
I have researched in some places, but none informs me of my problem.
Welcome to Stackoverflow!
I use exactly the same css that you have made available and it is working normally.
The only difference is a ;
that was missing on line 7
in color: #315e8a
body {
font-family: "K2D", sans-serif;
}
a:link, a:active, a:visited {
color: #315e8a;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
<a href="#teste">Teste</a>
Hello. I'm trying to put a style in the links of my website, but when I open the site does not apply the changes I put through the css. I used the following code
Ihaveresearchedinsomeplaces,butnoneinformsmeofmyproblem.
Welcome to Stackoverflow!
I use exactly the same css that you have made available and it is working normally. The only difference is a %code% that was missing on line %code% in %code%
I have not tested the code, but has a semicolon (;). Missing on line 7. Try this and will probably work