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

การตั้งค่าสีข้อความโดยใช้ CSS


หากต้องการกำหนดสีข้อความ ให้ใช้คุณสมบัติสีใน CSS คุณสามารถตั้งค่าสีด้วยชื่อสี ค่าฐานสิบหก ค่า RGB หรือใช้ค่า HSL

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
span {
   background-color: orange;
   color: white;
}
p.demo {
   display: none;
}
span.demo1 {
   display: inline;
}
</style>
</head>
<body>
<h1>Match Details</h1>
<div>
Match will begin at <p class="demo">9AM</p> 10AM on 20th December.
</div>
<div>
Match will end at <span class="demo1">5PM</span> on 20th December.
</div>
</body>
</html>

ผลลัพธ์

การตั้งค่าสีข้อความโดยใช้ CSS

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

<!DOCTYPE html>
<html>
<head>
<style>
p.demo1 {
   word-spacing: 1cm;
   color: #F8E61C;
}
p.demo2 {
   word-spacing: 40px;
}
</style>
</head>
<body>
<h1>Demo Heading</h1>
<h2>Heading2</h2>
<p class="demo1">This is demo text.</p>
<h2>Heading2</h2>
<p class="demo2">This is demo text.</p>
</body>
</html>

ผลลัพธ์

การตั้งค่าสีข้อความโดยใช้ CSS