marcus Gemeos Posted June 21, 2005 Report Share Posted June 21, 2005 Ola,Abaixo segue um código que sublinha o link de um site quando clica nele, mas queria saber como isso é processado para que serve cada código abaixo:<style>A:link { color: #008000; text-decoration: none; }A:visited { color: #008000; text-decoration: none; }A:active { color: #008000; }A:hover { text-decoration: underline; }</style>Obrigado! preciso!Marcus Quote Link to comment Share on other sites More sharing options...
0 OSJunior Posted June 21, 2005 Report Share Posted June 21, 2005 Olá...isso não é Javascript e sim CSS.CSS é uma linguagem client-side e é interpretada como JS.Essa linguagem interfere no visual da página.Quanto ao seu código...ele é um estilo para links. Ele é bem simples, pois não altera de cor e não muda funções na página nem no link.falou. Quote Link to comment Share on other sites More sharing options...
0 marcus Gemeos Posted June 21, 2005 Author Report Share Posted June 21, 2005 Mas cada linha serve para que?Grato!Marcelo Quote Link to comment Share on other sites More sharing options...
0 johnle Posted June 21, 2005 Report Share Posted June 21, 2005 Link - um linkVisited - um link que já foi visitadoActive - um link ativoHover - quando o mouse passa sobre o linkcolor: a cor do link - Ex.: #008000text-decoration: decoração do texto - Ex.: none ou underlinea:hover { color: #008000; text-decoration: underline; }isto quer dizer que quando o mouse passar sobre o link, este, vai ficar sublinhado e sua cor vai mudar para #008000 Quote Link to comment Share on other sites More sharing options...
0 Guest Guest Posted June 21, 2005 Report Share Posted June 21, 2005 A:link { color: #008000; text-decoration: none; } - Estilo do link - sem decoraçãoA:visited { color: #008000; text-decoration: none; } - Estilo do link visitado sem decoraçãoA:active { color: #008000; } - Estilo do link ativoA:hover { text-decoration: underline; } - Estilo do link com o mouse sobre o mesmo - decoração: underline = coloca uma linha embaixo do link Quote Link to comment Share on other sites More sharing options...
0 Leandro MX Posted June 21, 2005 Report Share Posted June 21, 2005 Ops! Posts cruzados... Quote Link to comment Share on other sites More sharing options...
Question
marcus Gemeos
Ola,
Abaixo segue um código que sublinha o link de um site quando clica nele, mas queria saber como isso é processado para que serve cada código abaixo:
<style>
A:link { color: #008000; text-decoration: none; }
A:visited { color: #008000; text-decoration: none; }
A:active { color: #008000; }
A:hover { text-decoration: underline; }
</style>
Obrigado! preciso!
Marcus
Link to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.