国产片av在线观看精品免费,美丽人妻系列无码专区,蜜臀av国产精品久久久久 http://m.mxio.cn 傳播先進(jìn)設(shè)計(jì)理念 推動(dòng)原創(chuàng)設(shè)計(jì)發(fā)展 Wed, 08 Mar 2006 14:35:00 +0000 zh-Hans hourly 1 https://wordpress.org/?v=6.9.4 簡(jiǎn)單實(shí)用的網(wǎng)頁(yè)表格特效 http://m.mxio.cn/4817.html http://m.mxio.cn/4817.html#respond Wed, 08 Mar 2006 14:35:00 +0000

簡(jiǎn)單實(shí)用的網(wǎng)頁(yè)表格特效


  在我們制作主頁(yè)的過(guò)程中,用到表格的地方非常多,靈活運(yùn)用表格技巧可以為我們的網(wǎng)頁(yè)增色不少,這里我就詳細(xì)介紹幾中特效表格的制作方法。

  一、彩色虛線表格


<style type=”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>
<table width=”200″ border=”0″ cellpadding=”2″ cellspacing=”2″ class=”tab1″
<tr>
<td><div align=”center”>虛</div></td>
<td><div align=”center”>線</div></td>
</tr>
<tr>
<td><div align=”center”>表</div></td>
<td><div align=”center”>格</div></td>
</tr>
</table>

  二、鼠標(biāo)指向單元格變色
 
 
 

onmouseout=”this.style.backgroundColor=”” 鼠標(biāo)離開(kāi)效果onmouseover=”this.style.backgroundColor=’#FFcccc'”鼠標(biāo)放上去的效果,
可以修改#FFcccc的值來(lái)改變顏色

<table width=”200″ border=”1″ cellspacing=”0″ cellpadding=”0″>
<tr>
<td onmouseout=”this.style.backgroundColor=”” onmouseover=”this.style.backgroundColor=’#FFcccc'”> </td>
</tr>
<tr>
<td onmouseout=”this.style.backgroundColor=”” onmouseover=”this.style.backgroundColor=’#FFccaa'”> </td>
</tr>
</table>
   .bg { FILTER: Alpha(Opacity=20); BACKGROUND-COLOR: #66ccff } .tab1 { BORDER-RIGHT: #0099cc thin dotted; BORDER-TOP: #00cc66 thin dotted; BORDER-LEFT: #6699ff thin dotted; BORDER-BOTTOM: #ff0000 thin dotted }  

  三、立體表格
 
立體表格

<table border=”1″ bordercolorlight=”#ffffff” bordercolordark=”#ffffff” width=”200″ cellpadding=”0″ cellspacing=”0″>
<tr align=”center”>
<td width=”86″
bordercolorlight=”#000000″ bordercolordark=”#eeeeee” bgcolor=”#B7B7B7″ >立體</td>
<td width=”108″
bordercolorlight=”#000000″ bordercolordark=”#eeeeee” bgcolor=”#B7B7B7″ >表格</td>
</tr>
</table>

  四、表格嵌套

  1、利用表格的間距來(lái)做嵌套

<table width=”200″ border=”1″ cellspacing=”4″ cellpadding=”0″>
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
主要是用到間距 cellspacing=”4″

   

  2、充分利用根據(jù)表格對(duì)齊的方式

  這里主要是將第一個(gè)表格居左,第二個(gè)表格居右,第三個(gè)表格居中。這樣當(dāng)你隨意調(diào)整里面三個(gè)表格大小的時(shí)候,他們的間距將保持不變,非常方便。

 
 
 

<table width=”200″ border=”1″ cellpadding=”0″ cellspacing=”0″ bordercolor=”#FF0000″>
<tr>
<td><table width=”60″ border=”1″ align=”left” cellpadding=”0″ cellspacing=”0″>
<tr>
<td> </td>
</tr>
</table>
<table width=”60″ border=”1″ align=”right” cellpadding=”0″ cellspacing=”0″>
<tr>
<td> </td>
</tr>
</table>
<table width=”80″ border=”1″ align=”center” cellpadding=”0″ cellspacing=”0″>
<tr>
<td> </td>
</tr>
</table></td>
</tr>
</table>
   .bg { FILTER: Alpha(Opacity=20); BACKGROUND-COLOR: #66ccff } .tab1 { BORDER-RIGHT: #0099cc thin dotted; BORDER-TOP: #00cc66 thin dotted; BORDER-LEFT: #6699ff thin dotted; BORDER-BOTTOM: #ff0000 thin dotted }    五、半透明表格

透明

  這里主要是用到了CSS濾鏡filter: Alpha(Opacity=20)。

<style type=”text/css”>
<!–
.bg {
background-color: #66CCFF;
filter: Alpha(Opacity=20);
}
–>
<table width=”200″ border=”0″ cellpadding=”0″ cellspacing=”0″ class=”bg”>
<tr>
<td><div align=”center”>半</div></td>
<td><div align=”center”>透明</div></td>
</tr>
<tr>
<td><div align=”center”>表</div></td>
<td><div align=”center”>格</div></td>
</tr>
</table>

  六、陰影表格

111222333

  這里主要用到了CSS濾鏡style=”filter:shadow(color=#cccccc,direction=120);width:300;padding-right:10;padding-bottom:10″

<div style=”filter:shadow(color=#cccccc,direction=120);width:300;padding-right:10;padding-bottom:10″>
<table width=300 border=1 bgcolor=#EAEAEA

<tr><td width=”93″>111</td><td width=”91″>222</td><td width=”94″>333</td></tr>
</table>
</div>

  附:插入CSS樣式的方法(我們這里用半透明表格來(lái)做說(shuō)明)
  第一種方法是定義一個(gè)CSS名稱。
  比如
<style type=”text/css”>
<!–
.bg {
background-color: #66CCFF;
filter: Alpha(Opacity=20);
}
–>
  元素需要用到CSS的時(shí)候,比如表格,定義一個(gè)CLASS就可以了,如
<table width=”200″ border=”0″ cellpadding=”0″ cellspacing=”0″ class=”bg”>

  第二種是直接在你需要用到CSS元素的地方插入相關(guān)代碼,style=””如:
<table width=”201″ border=”1″ style=”filter: Alpha(Opacity=20);background-color: #66CCFF;”>

  關(guān)于CSS的具體使用就不在這里做具體介紹了,大家可以參考天極“設(shè)計(jì)在線”CSS樣式表中的相關(guān)文章。

]]>
http://m.mxio.cn/4817.html/feed 0
主站蜘蛛池模板: 好吊视频在线一区二区三区| 久久偷看各类wc女厕嘘嘘偷窃| 天堂va亚洲va欧美va国产| 欧美日激情日韩精品嗯| 欧美三级不卡在线播放| 日韩在线视频一区二区三区| 美女视频黄频a免费| 成人无码a∨电影免费| 国产午夜美女福利短视频| 国产成人片无码视频在线观看| 无遮18禁在线永久免费观看挡| 国产精品国产三级国产专业| 狠狠色丁香久久婷婷综合五月| 久久99精品久久久久久齐齐| 免费十八禁一区二区三区| 男女裸交免费无遮挡全过程| 被技师按摩到高潮的少妇| 午夜福利看片在线观看| 欧美午夜精品一区二区三区电影| 国产在线看片无码人精品| 国产农村妇女高潮大叫| 人妻(高h)| 亚洲日本一区二区三区在线不卡 | 久久天天躁狠狠躁夜夜躁2o2o| 99福利一区二区视频| 国产人与禽zoz0性伦| 国产96色在线 | 国| 日本免费一区二区三区日本| aa片在线观看视频在线播放| 亚洲欧洲日产国码综合在线| 偷自拍另类亚洲清纯唯美| 精品无码三级在线观看视频| 成本人妻片无码中文字幕免费| 国产日产精品系列| 99热这里只有精品久久免费| 无码丰满熟妇浪潮一区二区av| 男人猛躁进女人免费播放| 99er久久国产精品先锋| 国产98色在线 | 国| 白嫩无码人妻丰满熟妇啪啪区百度| 一二三四中文字幕日韩乱码|