ในการจัดรูปแบบพื้นหลังขององค์ประกอบ คุณสามารถตั้งค่าภาพพื้นหลัง ตำแหน่งพื้นหลัง ด้วยเหตุนี้ ให้ตั้งค่าพื้นหลังซ้ำเพื่อเล่นภาพซ้ำในแนวนอนหรือแนวตั้ง
ตำแหน่งพื้นหลัง
ตำแหน่งพื้นหลังคือการกำหนดตำแหน่งเริ่มต้นของภาพพื้นหลัง สำหรับสิ่งนี้ ให้ใช้คุณสมบัติตำแหน่งพื้นหลัง
ตัวอย่าง
เรามาดูตัวอย่างกัน −
<!DOCTYPE html> <html> <head> <style> body { background-image: url("https://www.tutorialspoint.com/images/Swift.png"); background-repeat: no-repeat; background-attachment: fixed; color: blue; background-position: left center; } .demo { text-decoration: overline underline; } </style> </head> <body> <h1>Details</h1> <p class="demo">Examination Center near ABC College.</p> <p class="demo2">Exam begins at 9AM.</p> </body> </html>
ผลลัพธ์
พื้นหลัง-ซ้ำ
การทำซ้ำพื้นหลังใน CSS ใช้เพื่อกำหนดวิธีการทำซ้ำรูปภาพพื้นหลังบนหน้าเว็บ สำหรับสิ่งนี้ ให้ใช้คุณสมบัติ background-repeat ต่อไปนี้สามารถเป็นค่าคุณสมบัติ -
background-repeat: repeat|repeat-x|repeat-y|no-repeat|initial|inherit;
ตัวอย่าง
เรามาดูตัวอย่างกัน −
<!DOCTYPE html> <html> <head> <style> body { background-image: url("https://www.tutorialspoint.com/images/Swift.png"); background-repeat: repeat-x; background-color: blue; color: white; } .demo { text-decoration: overline underline; } </style> </head> <body> <h1>Details</h1> <p class="demo">Examination Center near ABC College.</p> <p class="demo2">Exam begins at 9AM.</p> </body> </html>
ผลลัพธ์