CSS-完全搞定背景圖片

穩萊

CSS-完全搞定背景圖片


自定背景圖片

若是全版面的圖,圖片大小約800x450
版面設定/自定樣式/
在裡面的CSS還蠻前面的地方,大約找到下面內容
/*Background*/
body {background-image: url('圖片網址');no-repeat;}

貼上(圖片網址)的內容就可以了,但必須是網路上的圖片!
所以若是自己準備的圖要先上傳至網路上!

 


固定背景圖片

同樣的地方
/*Background*/
body {background-image: url('圖片網址');
background-repeat: no-repeat;
background-attachment:fixed;}

加上最後一段,就可以讓背景固定不動了!
固定背景的好處是至少讓圖不會有貼接般的難看!

 


固定背景圖的位置
把圖片固定在不同位置

同樣的語法再加上一段
/*Background*/
body{background:url('圖片網址') fixed; background-position: 固定的位置;
background-repeat:no-repeat;}

固定的位置:
left top -左上
left bottom -左下
right top -右上
right bottom -右下
center -中央
(另一種百分比的方法)
0% 0% -左上方
0% 50% -左邊中間
50% 0% -中間上方
50% 50% -正中央
100% 0% -右邊上方
0% 100% -左邊下方
100% 50% -右邊中間
50% 100% -中間下方
100% 100% -右下方
http://www.yu163.net/list.asp?classid=1&page=5

http://www.yu163.net/user1/imgk8d/archives/2007/googlepaiming1258.html


http://www.hsiu28.net/style/style_3.php
CSS的屬性很多,有許多人都抱怨說要怎麼才能快速記憶CSS的屬性呢.在這裡我就把CSS所有的屬性列在一張小卡片上,大家可以像背英語單詞的小卡片一樣,用來記憶:CSS速記小紙片(目前缺)

字體屬性:(font)
大小 font-size: x-large;(特大) xx-small;(極小) 一般中文用不到,只要用數值就可以,單位:PX、PD
樣式 font-style: oblique;(偏斜體) italic;(斜體) normal;(正常)
行高 line-height: normal;(正常) 單位:PX、PD、EM
粗細 font-weight: bold;(粗體) lighter;(細體) normal;(正常)
變體 font-variant: small-caps;(小型大寫字母) normal;(正常)
大小寫 text-transform: capitalize;(首字母大寫) uppercase;(大寫) lowercase;(小寫) none;(無)
修飾 text-decoration: underline;(下劃線) overline;(上劃線) line-through;(刪除線) blink;(閃爍)
常用字體:(font-family)
"Courier New", Courier, monospace, "Times New Roman", Times, serif, Arial, Helvetica, sans-serif, Verdana

背景屬性:(background)
色彩 background-color: #FFFFFF;
圖片 background-image: url();
重複 background-repeat: no-repeat;
滾動 background-attachment: fixed;(固定) scroll;(滾動)
位置 background-position: left(水平) top(垂直);
簡寫方法 background:#000 url(..) repeat fixed left top;

區塊屬性:(Block)
字間距 letter-spacing: normal; 數值
對齊 text-align: justify;(兩端對齊) left;(左對齊) right;(右對齊) center;(居中)
縮進 text-indent: 數值px;
垂直對齊 vertical-align: baseline;(基線) sub;(下標) super;(下標) top; text-top; middle; bottom; text-bottom;
詞間距 word-spacing: normal; 數值
空格 white-space: pre;(保留) nowrap;(不換行)
顯示 display:block;(塊) inline;(內嵌) list-item;(列表項) run-in;(追加部分) compact;(緊湊) marker;(標記) table; inline-table; table-raw-group; table-header-group; table-footer-group; table-raw; table-column-group; table-column; table-cell; table-caption;(表格標題)

方框屬性:(Box)
width:; height:; float:; clear:both; margin:; padding:; 順序:上右下左

邊框屬性:(Border)
border-style: dotted;(點線) dashed;(虛線) solid; double;(雙線) groove;(槽線) ridge;(脊狀) inset;(凹陷) outset;
border-width:; 邊框寬度
border-color:#;
簡寫方法 border:width style color;

列表屬性:(List-style)
類型 list-style-type:disc;(圓點) circle;(圓圈) square;(方塊) decimal;(數字) lower-roman;(小羅碼數字) upper-roman; lower-alpha; upper-alpha;
位置 list-style-position: outside;(外) inside;
圖像 list-style-image: url(..);

定位屬性:(Position)
Position: absolute; relative; static;
visibility: inherit; visible; hidden;
overflow: visible; hidden; scroll; auto;
clip: rect(12px,auto,12px,auto) (裁切)

 給當前日誌評分:
Loading Vote
正在讀取評分資料...


文章來自: Tank部落格
引用通告: 查看所有引用 | 我要引用此文章
Tags: css
相關日誌:

評論: 0 | 引用: 0 | 查看次數: -
發表評論
暱 稱:
密 碼: 遊客發言不需要密碼.
內 容:
驗證碼: 驗證碼
選 項:
雖然發表評論不用註冊,但是為了保護您的發言權,建議您註冊帳號.