Jump to content
Fórum Script Brasil
  • 0

ExplicaÇÃo De Java Script


marcus Gemeos

Question

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

  • 0

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.

Link to comment
Share on other sites

  • 0

Link - um link

Visited - um link que já foi visitado

Active - um link ativo

Hover - quando o mouse passa sobre o link

color: a cor do link - Ex.: #008000

text-decoration: decoração do texto - Ex.: none ou underline

a: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

Link to comment
Share on other sites

  • 0
Guest Guest

A:link { color: #008000; text-decoration: none; } - Estilo do link - sem decoração

A:visited { color: #008000; text-decoration: none; } - Estilo do link visitado sem decoração

A:active { color: #008000; } - Estilo do link ativo

A:hover { text-decoration: underline; } - Estilo do link com o mouse sobre o mesmo - decoração: underline = coloca uma linha embaixo do link

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...