|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
請教兩個超菜的問題
1。如何在表格中填色?
2。如何把背景圖片設成透明?我在CTR-J中設了透明度20% 可是在網頁上看到的還是不透明的圖片 |
1.鼠標點在表格內,添背景顏色,下面有很多添色框,可以試試,就知道各個的功能了。
2.圖片存儲的時候存儲為.gif的形式 |

1。如何在表格中填色?
[html]
<html>
<head>
<style type="text/css">
table {background-color: #00ff00}
td {background-color: #eeeeee}
</style>
</head>
<body>
<table>
<tr><td>asdf</td></tr>
<tr><td>asdf</td></tr>
<tr><td>asdf</td></tr>
</table>
</body>
</html>
[/html]
|
|