Code ใส่พื้นหลัง + ลบเส้นขอบ
Code ใส่พื้นหลัง + ลบเส้นขอบ
การกำหนดค่า
background-attachment :
fixed ล็อกพื้นหลังอยู่กับที่
scroll พื้นหลังเลื่อนตามเนื้อหา
background-repeat :
repeat ทำซ้ำพื้นหลัง
no-repeat ไม่ทำซ้ำ
โค้ดที่จะนำไปวาง
<style type="text/css">
body {
background-image: url( ใส่ url ของรูป ) ;
background-attachment: fixed ;
background-repeat: repeat ;
}
#user-details { border: none; }
.section .content { border: none; }
</style>