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

รายการจัดแต่งทรงผมใน CSS


CSS ช่วยให้เราสามารถกำหนดสไตล์รายการโดยการระบุพื้นหลัง คุณสมบัติรายการสไตล์ สไตล์แบบอักษร ฯลฯ คุณสมบัติ list-style เป็นชวเลขสำหรับระบุ list-style-type, list-style -image และ list-style-position ในลำดับเดียวกัน

ไวยากรณ์

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

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

ตัวอย่าง

ตัวอย่างต่อไปนี้แสดงให้เห็นถึงการจัดรูปแบบรายการ -

<!DOCTYPE html>
<html>
<head>
<style>
ul {
   display: flex;
   float: left;
   list-style-image: url("https://www.tutorialspoint.com/images/reactjs.png");
   background: lightseagreen;
   list-style-position: inside;
}
li {
   background: azure;
   margin: 5px 20px;
}
</style>
</head>
<body>
<h3>ReactJS</h3>
<ul>
<li>Lesson 1</li>
<li>Lesson 2</li>
<li>Lesson 3</li>
<li>Lesson 4</li>
<li>Lesson 5</li>
</ul>
</body>
</html>

ผลลัพธ์

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

รายการจัดแต่งทรงผมใน CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
ol {
   width: 40%;
   color: white;
   list-style: lower-greek inside;
   background-image: url("https://www.tutorialspoint.com/ethereum/images/ethereum-mini-logo.jpg");
}
li {
   background-color: rgba(0,0,0,0.6);
   margin: 5px 30px;
}
</style>
</head>
<body>
<h2>Ethereum</h2>
<ol>
<li>Smart Contracts</li>
<li>Ganache</li>
<li>Creating Wallet </li>
<li>Deploying Contract</li>
</ol>
</body>
</html>

ผลลัพธ์

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

รายการจัดแต่งทรงผมใน CSS