要從哪裡改?
body {
margin:0px;
color: #993300;
background:#990000;
background-repeat:repeat-x;
background-position:top;
background-image: url("http://pic.wretch.cc/icon/reddot/banner.gif");
}
a:link{ color: #ffffff; text-decoration:none; background: none;}
a:visited{ color: #ffcc99; text-decoration:none; background: none;}
a:active{ color: #ffcc99; background: none;}
a:hover{ color: #993300;text-decoration: underline;background : #ffffff;}
#banner {
color:#ffffff;
background: none;
font-size:large;
font-weight:normal;
padding-top:70px;
padding-left:20px;
padding-bottom:10px;
position: relative; z-index:1;
text-align: left;
}
#banner a:link{ color: #ccc040; text-decoration:none; background: none;}
#banner a:visited{ color: #b27500; text-decoration:none; background: none;}
#banner a:active{ color: #ccc040; background: none;}
#banner a:hover{ color: #ffffff; text-decoration:none; background: none;}
.description {
color:#ffffff;
background: none;
font-size:small;
text-transform:none;
}
.side {
color:#ffcc99;
background: none;
font-size:small;
font-weight:normal;
line-height:140%;
padding:5px;
border: 1px solid #ffffff;
}
.sidetitle {
color:#000099;
font-size:small;
font-weight:normal;
margin-top:10px;
background: #ffffff;
background-repeat:repeat-x;
background-position:top;
background-image: url("http://pic.wretch.cc/icon/reddot/link.gif");
line-height:140%;
padding-right:3px;
padding-left:3px;
padding-top:10px;
text-align:center;
}
.powered {
color: #ffffff;
background: none;
font-size:small;
line-height:140%;
padding:2px;
margin-top:20px;
text-align:center;
}
2005-03-23 17:21:40 · 3 個解答 · 發問者 ? 3 in 電腦與網際網路 ➔ 程式設計
CSS串聯樣式表教學
『背景屬性一覽』
background-color:#eeeeee /*背景色彩*/
background-images : url(images/bg.gif) /*背景圖片*/
background-attachment : fixed /*固定背景*/
background-repeat : repeat /*重複排列-網頁預設*/
background-repeat : no-repeat /*不重複排列*/
background-repeat : repeat-x /*在x軸重複排列*/
background-repeat : repeat-y /*在y軸重複排列*/
background-position : 90% 90% /*背景圖片x與y軸的位置*/
↓將背景放在網頁x軸90% y軸90%的地方,且固定不隨者捲動
↓將背景排列在網頁x軸,且固定不隨者捲動
↓將背景排列在網頁y軸,且固定不隨者捲動
↓固定背景,設定背景色
2005-03-26 19:45:06 · answer #1 · answered by Anonymous · 0⤊ 0⤋
background 就是背景整個網頁的背景在 body 下其他部分看你的 class 指定為哪個,比如說
2005-03-24 06:33:04 · answer #2 · answered by 璉璉 6 · 0⤊ 0⤋
body {
margin:0px;
color: #993300; ...這是前景色
background:#990000; ...這是背景色
background-image: url("http://pic.wretch.cc/icon/reddot/banner.gif"); ...這是背景圖
}
2005-03-23 18:02:20 · answer #3 · answered by 北極熊 1 · 0⤊ 0⤋