Gå til innhold

Hvordan linke til f.eks midt på en side?


Anbefalte innlegg

Hvordan kan jeg linke til en side på min egen server slik at han havner på f.eks andre overskrift fra toppen på den siden(slik at nettleseren automatisk scroller ned på siden)? Ser at mange gjør dette, men har ikke skjønt hvordan. F.eks her på diskusjon.no hvis man linker til et innlegg. :)

Lenke til kommentar
Videoannonse
Annonse
The name attribute is used to create a named anchor. When using named anchors we can create links that can jump directly into a specific section on a page, instead of letting the user scroll around to find what he/she is looking for.

 

Below is the syntax of a named anchor:

<a name="label">Text to be displayed</a>

The name attribute is used to create a named anchor. The name of the anchor can be any text you care to use.

 

The line below defines a named anchor:

<a name="tips">Useful Tips Section</a>

You should notice that a named anchor is not displayed in a special way.

 

To link directly to the "tips" section, add a # sign and the name of the anchor to the end of a URL, like this:

<a href="http://www.w3schools.com/html_links.asp#tips">
Jump to the Useful Tips Section</a>

A hyperlink to the Useful Tips Section from WITHIN the file "html_links.asp" will look like this:

<a href="#tips">Jump to the Useful Tips Section</a>

 

Verre en som så er det ikke.. :thumbup:

Et google søk gir deg masse informasjon.

Lenke til kommentar

Tusen takk for kjempebra svar.

 

Kom derimot på et problem:

 

Har følgende CSS kode for å gi linkene farger:

a{
text-decoration: none;
color: #990000;
}

 

...men nå får også <a name="label">Text to be displayed</a> osv den fargen. Hva kan jeg gjøre for at den fargen ikke skal gjelde disse?

Endret av White Fox
Lenke til kommentar

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
×
×
  • Opprett ny...