Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

การเปลี่ยนตำแหน่งของ List Markers ใน CSS


คุณสมบัติ CSS list-style-position ใช้เพื่อกำหนดตำแหน่งตัวทำเครื่องหมายของรายการ ค่าเริ่มต้นสำหรับคุณสมบัตินี้อยู่นอกซึ่งกำหนดเครื่องหมายนอกรายการ

ไวยากรณ์

ไวยากรณ์ของคุณสมบัติ CSS list-style-position มีดังนี้ -

Selector {
   list-style-position: /*value*/
}

ตัวอย่าง

ตัวอย่างต่อไปนี้แสดง CSS list-style-property -

<!DOCTYPE html>
<html>
<head>
<style>
li {
   width: 50%;
   margin: 5px;
   font-size: 120%;
   box-shadow: 0 0 3px 1px black;
   background: url("https://www.tutorialspoint.com/dbms/images/dbms.jpg") no-repeat 32px 8px;
   list-style-position: inside;
   padding: 0 0 10px 20px;
}
ol ol li {
   list-style: lower-roman;
   list-style-position: outside;
}
</style>
</head>
<body>
<ol>
<li>Black</li>
<li>
Blue
<ol>
<li>Green</li>
<li>Red</li>
</ol>
</li>
<li>Yellow</li>
<li>Red</li>
</ol>
</body>
</html>

ผลลัพธ์

สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -

การเปลี่ยนตำแหน่งของ List Markers ใน CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
ul {
   width: 200px;
   box-shadow: inset 0 0 6px green;
   list-style-position: outside;
}
ul + ul {
   list-style-type: circle;
   list-style-position: inside;
}
</style>
</head>
<body>
<ul>
<li>demo</li>
<li>demo</li>
<li>demo</li>
</ul>
<ul>
<li>demo</li>
<li>demo</li>
<li>demo</li>
</ul>
</body>
</html>

ผลลัพธ์

สิ่งนี้ให้ผลลัพธ์ต่อไปนี้ -

การเปลี่ยนตำแหน่งของ List Markers ใน CSS