2017-03-15 14 views
0

ここには2行の表があります。最初の行にはhrが含まれています。 2番目のテーブル行にはテキストとイメージがあります。 hrは画像とテキストの両方をカバーしないのはなぜですか? 時間は画像をカバーしていません

 <table> 
 
      <tr> 
 
       <td align="center"> 
 
        <hr class="hr"> 
 
       </td> 
 
      </tr> 
 
      <tr align="center"> 
 
       <td width="60%" align="center"> 
 
        <p> 
 
        Every occasion should be a special one! No matter the event, a custom-designed cake always adds that special something. 
 

 
        Weddings, birthdays, baby showers, an anniversary... for ANY event, large or small, let me help you celebrate with a delicious and beautifully-designed and decorated cake! 
 

 
        Please take a look through my Cake Photo Gallery to see some of the work I've done recently. 
 

 
        Anytime Cakes! Any cake, any style, any time!! 
 

 
        Enjoy! 
 

 
        ...Andrea 
 
        </p> 
 
       </td> 
 
       <td width="40%" align="center"> 
 
        <img src="images/homeimg.jpg"> 
 
       </td> 
 
      </tr> 
 
     </table>

+2

。あなたがあまりにも遠くに行く前に、私はレイアウトのためにテーブルを使うことを完全に軽蔑したい – jbutler483

答えて

0

<td colspan="2"><hr/></td>

0

あなたは1 COL二つのcolsを組み合わせることcolspanを使用することができます。

<table> 
 
      <tr> 
 
       <td align="center" colspan="2"> 
 
        <hr class="hr"> 
 
       </td> 
 
      </tr> 
 
      <tr align="center"> 
 
       <td width="60%" align="center"> 
 
        <p> 
 
        Every occasion should be a special one! No matter the event, a custom-designed cake always adds that special something. 
 

 
        Weddings, birthdays, baby showers, an anniversary... for ANY event, large or small, let me help you celebrate with a delicious and beautifully-designed and decorated cake! 
 

 
        Please take a look through my Cake Photo Gallery to see some of the work I've done recently. 
 

 
        Anytime Cakes! Any cake, any style, any time!! 
 

 
        Enjoy! 
 

 
        ...Andrea 
 
        </p> 
 
       </td> 
 
       <td width="40%" align="center"> 
 
        <img src="images/homeimg.jpg"> 
 
       </td> 
 
      </tr> 
 
     </table>
詳細な情報については、あなたがW3Cのウェブサイトを訪問することができます: https://www.w3schools.com/tags/att_td_colspan.asp

1

あなたの二行は二つのセル、最初の1つのみを持っています。 2列幅の広い、それ作るために最初のtdcolspan="2"を追加します。これは表形式のデータが含まれていないとして、あなたは* *、テーブルを使用してはならないようにこれが聞こえる

<table> 
 
    <tr> 
 
    <td align="center" colspan="2"> 
 
     <hr class="hr"> 
 
    </td> 
 
    </tr> 
 
    <tr align="center"> 
 
    <td width="60%" align="center"> 
 
     <p> 
 
     Every occasion should be a special one! No matter the event, a custom-designed cake always adds that special something. Weddings, birthdays, baby showers, an anniversary... for ANY event, large or small, let me help you celebrate with a delicious and 
 
     beautifully-designed and decorated cake! Please take a look through my Cake Photo Gallery to see some of the work I've done recently. Anytime Cakes! Any cake, any style, any time!! Enjoy! ...Andrea 
 
     </p> 
 
    </td> 
 
    <td width="40%" align="center"> 
 
     <img src="images/homeimg.jpg"> 
 
    </td> 
 
    </tr> 
 
</table>

関連する問題