[html] problem z tabelami

HTML to podstawy w dziedzinie tworzenia stron WWW, Style CSS warto opanować, bowiem za ich pomocą można dostosować odpowiednio wygląd swojej witryny WWW. Zagłębiamy się dalej i udostępniamy w tym forum możliwość zadawania pytań o JavaScript.
ODPOWIEDZ
_-Adam-_

[html] problem z tabelami

Post autor: _-Adam-_ »

Robie stronke oparta na tabelach, i mam problem. Poniewaz chcialbym zeby czwarta komorka z drugiego, trzeciego, i czwartego wiersza byla jedna komorka. Probowalem w pierwszej komorce ( pierwszej, ktora bym chcial miec polaczona z dwoma ponizszymi) poprostu wpisac colspan="3" ale grafika sie calkiem pomieszala :)
Prosze o pomoc. Oto kod tabeli z mojej strony:

Kod: Zaznacz cały

<table border="0" width="939" height="935" cellspacing="0" cellpading="0">
  <tr>
    <td width="12" height="227" background="graf\gora1.gif">
    </td>

    <td width=""166 height="227" background="graf\gora2.gif">
    </td>

    <td width="3" height="227" background="graf\gora3.gif">
    </td>

    <td width="738" height="227" background="graf\gora4.gif">
    </td>

    <td width=""19 height="227" background="graf\gora5.gif">
    </td>
  </tr>

  <tr>
    <td width="12" height="71" background="graf\mg1.gif">
    </td>

    <td width="166" height="71" background="graf\mg2.gif">
    </td>

    <td width="3" height="71" background="graf\mg3.gif">
    </td>

    <td width="738" height="71" background="graf\bg1.gif">
    </td>

    <td width="19" height="71" background="graf\prawo.gif">
    </td>
  </tr>


  <tr>
    <td width="12" height="405" background="graf\ml.gif">
    </td>

    <td width="166" height="405" background="graf\mbg.gif">
    </td>

    <td width="3" height="405" background="graf\mp.gif">
    </td>

    <td width="738" height="405" background="graf\bg2.gif">
    </td>

    <td width="19" height="405" background="graf\prawo.gif">
    </td>
  </tr>

  <tr>
    <td width="12" height="225" background="graf\md1.gif">
    </td>

    <td width="166" height="225" background="graf\md2.gif">
    </td>

    <td width="3" height="225" background="graf\md3.gif">
    </td>

    <td width="738" height="225" background="graf\bg3.gif">
    </td>

    <td width="19" height="225" background="graf\prawo.gif">
    </td>
  </tr>

  <tr>
    <td width="12" height="6" bgcolor="black">
    </td>

    <td width="166" height="6" bgcolor="black">
    </td>

    <td width="3" height="6" bgcolor="black">
    </td>

    <td width="738" height="6" bgcolor="black">
    </td>

    <td width="19" height="6" background="graf\endd.gif">
    </td>
  </tr>
</table>
KaRoL
Działa
Działa
Posty: 1071
Rejestracja: czw kwie 03, 2003 2:40 pm

Re: [html] problem z tabelami

Post autor: KaRoL »

Mam nadzieję, że dobrze zrozumiałem. Powinno być to:

Kod: Zaznacz cały

<table border="0" width="939" height="935" cellspacing="0" cellpading="0">
  <tr>
    <td width="12" height="227" background="graf\gora1.gif"> </td>
    <td width 166 height="227" background="graf\gora2.gif"> </td>
    <td width="3" height="227" background="graf\gora3.gif"> </td>
    <td width="738" height="227" background="graf\gora4.gif"> </td>
    <td width 19 height="227" background="graf\gora5.gif"> </td>
  </tr>
  <tr>
    <td width="12" height="71" background="graf\mg1.gif"> </td>
    <td width="166" height="71" background="graf\mg2.gif"> </td>
    <td width="3" height="71" background="graf\mg3.gif"> </td>
    <td width="738" height="701" background="graf\bg1.gif" rowspan="3"> </td>
    <td width="19" height="71" background="graf\prawo.gif"> </td>
  </tr>
  <tr>
    <td width="12" height="405" background="graf\ml.gif"> </td>
    <td width="166" height="405" background="graf\mbg.gif"> </td>
    <td width="3" height="405" background="graf\mp.gif"> </td>
    <td width="19" height="405" background="graf\prawo.gif"> </td>
  </tr>
  <tr>
    <td width="12" height="225" background="graf\md1.gif"> </td>
    <td width="166" height="225" background="graf\md2.gif"> </td>
    <td width="3" height="225" background="graf\md3.gif"> </td>
    <td width="19" height="225" background="graf\prawo.gif"> </td>
  </tr>
  <tr>
    <td width="12" height="6" bgcolor="black"> </td>
    <td width="166" height="6" bgcolor="black"> </td>
    <td width="3" height="6" bgcolor="black"> </td>
    <td width="738" height="6" bgcolor="black"> </td>
    <td width="19" height="6" background="graf\endd.gif"> </td>
  </tr>
</table>
Jeśli miałeś na myśli inny efekt napisz jeszcze raz.
ODPOWIEDZ