|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Div全称division意为“区分”使用DIV的方法跟使用其他tag的方法一样。
1、黑色虚线表格
虚线
表格
<styletype="text/CSS">
<!--
.tab1{
border-top-width:thin;
border-right-width:thin;
border-bottom-width:thin;
border-left-width:thin;
border-top-style:dotted;
border-right-style:dotted;
border-bottom-style:dotted;
border-left-style:dotted;
border-top-color:#00CC66;
border-right-color:#0099CC;
border-bottom-color:#FF0000;
border-left-color:#6699FF;
}
-->
</style>
<tablewidth="200"border="0"cellpadding="2"cellspacing="2"class="tab1">
<tr>
<td><divalign="center">虚</div></td>
<td><divalign="center">线</div></td>
</tr>
<tr>
<td><divalign="center">表</div></td>
<td><divalign="center">格</div></td>
</tr>
</table>
2、鼠标指向单位格变色
onmou搜索引擎优化ut="this.style.backgroundColor=’’"鼠标分开效果onmou搜索引擎优化ver="this.style.backgroundColor=’#FFcccc’"鼠标放上往的效果,
能够修正#FFcccc的值来改动色彩
<tablewidth="200"border="1"cellspacing="0"cellpadding="0">
<tr>
<tdonmou搜索引擎优化ut="this.style.backgroundColor=’’"onmou搜索引擎优化ver="this.style.backgroundColor=’#FFcccc’"></td>
</tr>
<tr>
<tdonmou搜索引擎优化ut="this.style.backgroundColor=’’"onmou搜索引擎优化ver="this.style.backgroundColor=’#FFccaa’"></td>
</tr>
</table>
3、平面表格
平面表格
<tableborder="1"bordercolorlight="#ffffff"bordercolordark="#ffffff"width="200"cellpadding="0"cellspacing="0">
<tralign="center">
<tdwidth="86"
bordercolorlight="#000000"bordercolordark="#eeeeee"bgcolor="#B7B7B7">平面</td>
<tdwidth="108"
bordercolorlight="#000000"bordercolordark="#eeeeee"bgcolor="#B7B7B7">表格</td>
</tr>
</table>
4、表格嵌套
1、使用表格的间距来做嵌套
<tablewidth="200"border="1"cellspacing="4"cellpadding="0">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
次要是用到间距cellspacing="4"
2、充实使用依据表格对齐的体例
这里次要是将第一个表格居左,第二个表格居右,第三个表格居中。如许当你随便调剂内里三个表格巨细的时分,他们的间距将坚持稳定,十分便利。
<tablewidth="200"border="1"cellpadding="0"cellspacing="0"bordercolor="#FF0000">
<tr>
<td><tablewidth="60"border="1"align="left"cellpadding="0"cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<tablewidth="60"border="1"align="right"cellpadding="0"cellspacing="0">
<tr>
<td></td>
</tr>
</table>
<tablewidth="80"border="1"align="center"cellpadding="0"cellspacing="0">
<tr>
<td></td>
</tr>
</table></td>
</tr>
</table>
5、半通明表格
半通明
表格
这里次要是用到了CSS滤镜filter:Alpha(Opacity=20)。
<styletype="text/css">
<!--
.bg{
background-color:#66CCFF;
filter:Alpha(Opacity=20);
}
-->
<tablewidth="200"border="0"cellpadding="0"cellspacing="0"class="bg">
<tr>
<td><divalign="center">半</div></td>
<td><divalign="center">通明</div></td>
</tr>
<tr>
<td><divalign="center">表</div></td>
<td><divalign="center">格</div></td>
</tr>
</table>
6、暗影表格
111222333
这里次要用到了CSS滤镜style="filter:shadow(color=#cccccc,direction=120);width:300;padding-right:10;padding-bottom:10"
<divstyle="filter:shadow(color=#cccccc,direction=120);width:300;padding-right:10;padding-bottom:10">
<tablewidth=300border=1bgcolor=#EAEAEA>
<tr><tdwidth="93">111</td><tdwidth="91">222</td><tdwidth="94">333</td></tr>
</table>
</div>
附:拔出CSS款式的办法(我们这里用半通明表格来做申明)
第一种办法是界说一个CSS称号。
好比
<styletype="text/css">
<!--
.bg{
background-color:#66CCFF;
filter:Alpha(Opacity=20);
}
-->
元素必要用到CSS的时分,好比表格,界说一个CLASS就能够了,如
<tablewidth="200"border="0"cellpadding="0"cellspacing="0"class="bg">
第二种是间接在你必要用到CSS元素的中央拔出相干代码,style="&quo</p>12下一页
如果单独使用DIV而不加任何CSS,那么它在网页中的效果和使用是一样的。 |
|