|
藍森林 http://www.lslnet.com 2006年8月25日 8:28
表格背景問題
想請教一下,表格背景如何設置?
背景居中。
背景靠右,垂直方面平鋪,
以及其它方式,如何控制。謝謝。 |
我也很想知道,哪位高手能給予幫助! |
你說的太含糊了。是背景圖嗎? |
我也想知道這個問題,我想只在表格中顯示背景圖. |
[html]<div align="center"><table width="50%" height="100" border="1" background="http://www.blackbalance.com/apple/bbs/images/weblogo.jpg">
<tr>
<td><font color="#6699FF"><strong>這樣子行不????</strong></font></td>
</tr>
</table></div>[/html] |
不明白你們說的意思:
[html]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>無標題文檔</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
.unnamed1 {
background-image: url(http://www.blueidea.com/gg/midoidea/11.gif);
}
.style1 {background-image: url(http://www.blueidea.com/gg/midoidea/11.gif); color: #FFFFFF; }
-->
</style></head>
<body>
<table width="533" height="104" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#000000">
<tr>
<td bgcolor="#FFFFFF" class="style1"><div align="center">表格居中 背景圖顯示</div></td>
</tr>
</table>
</body>
</html>
[/html] |
通過 css 進行控制即可~
.bg {
background-color: #330099;
background-attachment: scroll;
background-image: url(/pic.jpg);
background-repeat: repeat(no-repeat);
background-position: left(center top right bottom 12px 20pt);
} |
|