Maison > interface Web > tutoriel HTML > le corps du texte

想用table实现这样的布局_html/css_WEB-ITnose

WBOY
Libérer: 2016-06-21 09:43:56
original
1132 Les gens l'ont consulté

table 布局

想用表格实现这样的布局,求代码。

回复讨论(解决方案)

看不见你的图啊  卡卡西老师

直接用表格完成就可以.插入表格...

看不见你的图啊  卡卡西老师
图片:

嵌套一下
边框处理一下就是了

<table width=300><tr><td><table width=100%><tr><td width=50%>1</td><td width=50%>2</td></table></td></tr><tr><td><table width=100%><tr><td width=33%>3</td><td width=33%>4</td><td width=33%>5</td></table></td></tr></table>
Copier après la connexion

add css:

table{     border-collapse:collapse;    margin:-1px;}.out td {    border:1px gray solid;}.in1 td,.in2 td{    border:none;}.in1 td:first-child,.in2 td:not(:last-child){    border-right:1px solid red;}
Copier après la connexion

用表格还是有点麻烦,以后更改费事一点,div好点

有个方法,不用嵌套表格。

<table width="900" height="200" border="0" align="center" cellpadding="0" cellspacing="3" bgcolor="#000000">  <tr>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>  </tr>  <tr>    <td width="286" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td width="288" bgcolor="#AAFFCC"> </td>  </tr></table>
Copier après la connexion
Copier après la connexion

DIV欢迎您:

<html>	<head>		<title>图片布局</title>	</head>	<body>	  <div style="float:left;width:100%;height:100%"> 	    <div style="float:left;width:100%;height:50%;"> 	       <img    style="max-width:90%" src="mr.jpg"/ alt="想用table实现这样的布局_html/css_WEB-ITnose" > 	       <img    style="max-width:90%" src="mr.jpg"/ alt="想用table实现这样的布局_html/css_WEB-ITnose" > 	    </div>  	    <div style="float:left;width:100%;height:50%;"> 	      <img    style="max-width:90%" src="mr.jpg"/ alt="想用table实现这样的布局_html/css_WEB-ITnose" >  	      <div style="float:right;width:66.66%;height:100%;"> 	         <img    style="max-width:90%" src="mr.jpg"/ alt="想用table实现这样的布局_html/css_WEB-ITnose" >  	         <img    style="max-width:90%" src="mr.jpg"/ alt="想用table实现这样的布局_html/css_WEB-ITnose" > 	      </div> 	    </div> 	  </div> 	</body></html>
Copier après la connexion

有个方法,不用嵌套表格。

<table width="900"  style="max-width:90%" border="0" align="center" cellpadding="0" cellspacing="3" bgcolor="#000000">  <tr>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>  </tr>  <tr>    <td width="286" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td width="288" bgcolor="#AAFFCC"> </td>  </tr></table>
Copier après la connexion


用table这个是正解吧,

有个方法,不用嵌套表格。

<table width="900" height="200" border="0" align="center" cellpadding="0" cellspacing="3" bgcolor="#000000">  <tr>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>  </tr>  <tr>    <td width="286" bgcolor="#AAFFCC"> </td>    <td colspan="2" bgcolor="#AAFFCC"> </td>    <td width="288" bgcolor="#AAFFCC"> </td>  </tr></table>
Copier après la connexion
Copier après la connexion



+1

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!