You are not logged in.

  • Login

DUKE-NUKEM

Professional

  • "DUKE-NUKEM" started this thread

Posts: 749

Location: Dülmen

Occupation: GER

  • Send private message

1

Monday, January 16th 2006, 3:23pm

html

ich han mich mal an html ran gemacht und habe nun die frage warum ein 250*100 pixel bild nich in <td background="../../../page/logo.JPG" width="250" height="100" >&nbsp</td> past ?
wayne :> i'm god u know it

This post has been edited 2 times, last edit by "DUKE-NUKEM" (Jan 16th 2006, 3:25pm)


2

Monday, January 16th 2006, 3:26pm

Wegen Rändern und Innenabständen

mit cellpadding, cellspacing usw die Zelle ggf. noch formatieren

DUKE-NUKEM

Professional

  • "DUKE-NUKEM" started this thread

Posts: 749

Location: Dülmen

Occupation: GER

  • Send private message

3

Monday, January 16th 2006, 3:29pm

dann der komplett halber heit

<table border="0"cellpadding="0" height="800" cellspacing="0" width="800" >
<td background="../../../page/logo.JPG" width="250" height="100" >&nbsp</td>

ach aj die bild höhe past die bild breit nicht

hab das problem momentan so gelöst

<table border="0"cellpadding="0" height="800" cellspacing="0" width="800" >
<td height="100"><img src="../../../page/logo.JPG"></td>

das problem ist eigendlich nur der befehl width wenn ich ihn benutz passiern die kurieosesten sachen in eienr table wird nur bist zu hälte geschreiben solang width drinstht und solch sachen gibs enn alternative befehl für width ?

This post has been edited 1 times, last edit by "DUKE-NUKEM" (Jan 16th 2006, 3:34pm)


CULT_Horst

Professional

  • "CULT_Horst" has been banned

Posts: 1,741

Location: HSV

Occupation: GER

  • Send private message

4

Monday, January 16th 2006, 3:39pm

sind da noch andere zellen (TD) in der zeile (TR)?

wenn nicht, dann passt das ja auch irgendwie nicht mit deinen breitenangaben! ;)
aber ich denke mal da ist dann noch mehr!

jojo tabellen sind so ne sache, die machen manchmal was sie wollen!

poste doch mal den code der kmpl. tabelle.....

DUKE-NUKEM

Professional

  • "DUKE-NUKEM" started this thread

Posts: 749

Location: Dülmen

Occupation: GER

  • Send private message

5

Monday, January 16th 2006, 3:46pm

<table border="0"cellpadding="0" height="800" cellspacing="0" >
<td height="75"><img src="../../../page/logo.JPG"></td>
<td height="75">&nbsp</td>
<tr>
<td height="725">&nbsp</td>
<td height="725">&nbsp</td>
</table>


die width's wurden entfernt geplant die 1000 pixel für alles

6

Monday, January 16th 2006, 4:02pm

würde erstmal sagen dass deine tabelle völlig falsch ist. hast glaube td mit tr verwechselt.

Posts: 4,115

Location: Hildesheim

Occupation: GER

  • Send private message

7

Monday, January 16th 2006, 4:10pm

So sieht eine Tabelle aus:
tr = Zeile
td = Zelle

Source code

1
2
3
4
5
6
7
8
9
10
<table border="0" cellpadding="0" height="800" cellspacing="0">
  <tr>
    <td height="75"><img src="../../../page/logo.JPG"></td>
    <td height="75">&nbsp</td>
  </tr>
  <tr>
    <td height="725">&nbsp</td>
    <td height="725">&nbsp</td>
  </tr>
</table> 

DUKE-NUKEM

Professional

  • "DUKE-NUKEM" started this thread

Posts: 749

Location: Dülmen

Occupation: GER

  • Send private message

8

Monday, January 16th 2006, 4:33pm

hab das jetzt so geändert aber das ändert rein granichts sauberes programmieren gehört aber dazu

edit gelöst

This post has been edited 3 times, last edit by "DUKE-NUKEM" (Jan 16th 2006, 4:46pm)


CULT_Horst

Professional

  • "CULT_Horst" has been banned

Posts: 1,741

Location: HSV

Occupation: GER

  • Send private message

9

Monday, January 16th 2006, 4:47pm

na siehste