Gå til innhold

Anbefalte innlegg

Jeg vil ha linjene under hverandre så jeg kan bruke dem i en liste i stedenfor en horisontal linje.

  <center>
 <table width="500" cellpadding="1" cellspacing="0"><tr>
 <td ><font style="font-size:12px" >
   Linje1</font><br /><span style="font-size:9px">underlinje1</span></td>
 <td ><font style="font-size:12px" >
   linje2</font><br /><span style="font-size:9px">underlinje2</span></td>
   <td ><font style="font-size:12px" >
   linje3</font><br /><span style="font-size:9px">underlinje3</span></td>
   <td ><font style="font-size:12px" >
   linje4</font><br /><span style="font-size:9px">underlinje4</span></td>
   <td ><font style="font-size:12px" >
   linje5</font><br /><span style="font-size:9px">underlinje5</span></td>
   <td><font style="font-size:12px" >
   linje6</font><br /><span style="font-size:9px">underlinje6</span></td>
   </tr>
 </table>
 </center>
 <center>
 <table width="500" cellpadding="1" cellspacing="0"><tr>
 <td ><font style="font-size:12px" >
   Linje1</font><br /><span style="font-size:9px">underlinje1</span></td>
 <td ><font style="font-size:12px" >
   linje2</font><br /><span style="font-size:9px">underlinje2</span></td>
   <td ><font style="font-size:12px" >
   linje3</font><br /><span style="font-size:9px">underlinje3</span></td>
   <td ><font style="font-size:12px" >
   linje4</font><br /><span style="font-size:9px">underlinje4</span></td>
   <td ><font style="font-size:12px" >
   linje5</font><br /><span style="font-size:9px">underlinje5</span></td>
   <td><font style="font-size:12px" >
   linje6</font><br /><span style="font-size:9px">underlinje6</span></td>
   </tr>
 </table>
 </center>

Takker for all hjelp :thumbs:

Lenke til kommentar
Videoannonse
Annonse

1. Ta vekk _alle_ font tagger, og lær deg CSS ;)

http://www.w3schools.com

http://css.absentvoid.com

- Er to plasser å begynne på.

 

2. Du har satt linjeskifte i kver celle, du må bruke table row for å få fleire rader nedover:

<table>
<tr>
<td>Linje 1, Rute 1</td>
<td>Linje 1, Rute 2</td>
</tr> <!-- Første linje slutt -->

<tr> <!-- Andre linje begynner -->
<td>Linje 2, Rute 1</td>
<td>Linje 2, Rute 2</td>
</tr> <!-- Andre linje slutt -->
</table>

 

Skjønner? ;)

Lenke til kommentar

Skal du ha en liste skal følgende tagger brukes:

<ul>
<li>Listelinje nummer en</li>
<li>Listelinje nummer to</li>
<li>Listelinje nummer tre</li>
<li>Listelinje nummer fire</li>
</ul>

Hvis du vil ha nummerert hver linje, bytter du <ul> ut med <ol>

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...