by boo_kyoshii » 23/08/2013 5:51 pm
Background = พื้นหลัง
background-attachment ---> ใช้กำหนดว่าต้องการให้ภาพพื้นหลังนั้นอยู่กับที่ หรือว่าเลื่อนไปตาม Scroll Bar
ใช้คำสั่ง fixed , scroll
background-color ---> ใช้กำหนดทั้งสี พื้นหลังของเว็บเพจ หรือ ตาราง
ใช้คำสั่ง color-.......ตามด้วย ชื่อของสี red หรือ โค้ดสี #000099
background-image ---> ใช้กำหนดรูปภาพ ให้พื้นหลังของเว็บเพจ หรือตาราง
ใช้คำสั่ง url ของรูป เช่น url(images/bg.jpg)
background-position ---> ใช้กำหนดตำแหน่งการจัดวางรูปภาพพื้นหลัง
ใช้คำสั่ง top left , top center , top right , center left , center center , center right , bottom left , bottom center , bottom right , x% y% , xpos ypos
background-repeat ---> กำหนดรูปภาพพื้นหลังว่าต้องการให้มีการเรียงต่อรูปภาพหรือไม่
ใช้คำสั่ง repeat , repeat-x , repeat-y , no-repeat
Code: Select all
<style type="text/css">
<!--
body {
background-color: #FFCCFF;
}
-->
</style>

- bg.jpg (33.1 KiB) Viewed 1231 times
Code: Select all
<style type="text/css">
<!--
body {
background-image: url(file:///G|/No.2/check6b-03.gif);
}
-->
</style></head>

- bg1.jpg (87.51 KiB) Viewed 1231 times
[b][size=150][color=#0000FF]Background = พื้นหลัง[/color][/size][/b]
[b]background-attachment --->[/b] ใช้กำหนดว่าต้องการให้ภาพพื้นหลังนั้นอยู่กับที่ หรือว่าเลื่อนไปตาม Scroll Bar [color=#BF00FF]ใช้คำสั่ง fixed , scroll[/color]
[b]background-color ---> [/b]ใช้กำหนดทั้งสี พื้นหลังของเว็บเพจ หรือ ตาราง [color=#BF00FF]ใช้คำสั่ง color-.......[/color]ตามด้วย ชื่อของสี red หรือ โค้ดสี #000099
[b]background-image --->[/b] ใช้กำหนดรูปภาพ ให้พื้นหลังของเว็บเพจ หรือตาราง [color=#BF00FF]ใช้คำสั่ง url [/color]ของรูป เช่น url(images/bg.jpg)
[b]background-position --->[/b] ใช้กำหนดตำแหน่งการจัดวางรูปภาพพื้นหลัง [color=#BF00FF]ใช้คำสั่ง top left , top center , top right , center left , center center , center right , bottom left , bottom center , bottom right , x% y% , xpos ypos[/color]
[b]background-repeat --->[/b] กำหนดรูปภาพพื้นหลังว่าต้องการให้มีการเรียงต่อรูปภาพหรือไม่ [color=#BF00FF]ใช้คำสั่ง repeat , repeat-x , repeat-y , no-repeat[/color]
[code]<style type="text/css">
<!--
body {
background-color: #FFCCFF;
}
-->
</style>[/code][attachment=0]bg.jpg[/attachment]
[code]<style type="text/css">
<!--
body {
background-image: url(file:///G|/No.2/check6b-03.gif);
}
-->
</style></head>[/code][attachment=1]bg1.jpg[/attachment]