HTML Tabellenformatierung klappt nicht

marivuko

Cadet 3rd Year
Registriert
Mai 2013
Beiträge
48
Hallo,

ich möchte aus der Tabelle (siehe Bild) diese rot markierten Absätze/Leerzeichen rausbekommen,
weiß jemand vielleicht wie ich des machen kann ? HTML Code ist unten
Danke im Voraus

HTML:
<table style="width:100%">
  <tr>
    <th width = "70%" bgcolor = "yellow"> erste  </th>
    <th width = "10%" bgcolor = "yellow"> zweite </th> 
    <th width = "10%" bgcolor = "yellow"> dritte </th>
	<th width = "10%" bgcolor = "yellow"> vierte </th> 	
  </tr>
</table>
 

Anhänge

  • tab.JPG
    tab.JPG
    19,1 KB · Aufrufe: 198
schon klar dass ich lieber css benutzen soll,
nur ist es so einfacher den Fehlen momentan zu finden
 
HTML:
<table style="width:100%; border-collapse: collapse">
  <tr>
    <th width="70%" bgcolor="yellow"> erste  </th>
    <th width="10%" bgcolor="yellow"> zweite </th> 
    <th width="10%" bgcolor="yellow"> dritte </th>
	<th width="10%" bgcolor="yellow"> vierte </th> 	
  </tr>
</table>

https://jsfiddle.net/z6py21ef/
 
Zurück
Oben