>웹 프론트엔드 >HTML 튜토리얼 >HTMLTable布局_html/css_WEB-ITnose

HTMLTable布局_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:41:521151검색

 1 <DOCTYPE html> 2 <html> 3     <head> 4         <meta http-equiv="Content-Type" Content="text/html" charset="utf-8"/> 5         <title>table布局</title> 6     </head> 7     <body> 8         <table border="0" width="800px"> 9             <tr>10                 <td colspan="2" style="background-color:#99bbbb">11                     <h1>Main Title of The web page</h1>12                 </td>13             </tr>14             <tr valign="top" >15                 <td style="background-color:#ffff99;width:300px; height:400px;text-align:top;">16                     HTML<br/>17                     CSS<br/>18                     JavaScript<br/>19                     Jquery<br/>20                 </td>21                 <td style="background-color:#EE8888;text-align:top;width:500px;height:300px;">Content Goes here</td>22             </tr>23             <tr>24                 <td colspan="2" style="text-align:center; background-color:#CCCCCC">CopyRight W3CSchool.com.cn</td>25             </tr>26         </table>27     </body>28 </html>

效果图:

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.