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

การตั้งค่าความสูงของบรรทัดใน CSS


ความสูงของเส้นสามารถกำหนดได้โดยคุณสมบัติ CSS line-height รับเฉพาะค่าบวกเท่านั้น

ไวยากรณ์

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

Selector {
   line-height: /*value*/
}

ตัวอย่าง

ตัวอย่างต่อไปนี้แสดงคุณสมบัติ CSS line-height

<!DOCTYPE html>
<html>
<head>
<style>
div * {
   margin: 1.5em;
   box-shadow: -13px -10px 10px 1px crimson;
}
#demo {
   line-height: 60%;
}
p {
   box-shadow: 13px -10px 10px 1px grey;
   line-height: 50px;
}
</style>
</head>
<body>
<h2>Demo Heading</h2>
<div>
<p>This is demo text one.</p>
<div>This is demo text two.</div>
<div id="demo">This is demo text three.</div>
</div>
</body>
</html>

ผลลัพธ์

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

การตั้งค่าความสูงของบรรทัดใน CSS

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<style>
div * {
   margin: auto;
   padding: 3em;
}
p {
   height: 100px;
   width: 100px;
   border: thin solid;
   border-radius: 50%;
   box-shadow: 0 20px 10px 1px grey;
   line-height: 0.6;
}
</style>
</head>
<body>
<h2>What is C#?</h2>
<div>
<p>C# is a strongly-typed language. Every variable and constant has a type, as does every expression that evaluates to a value.</p>
</div>
</body>
</html>

ผลลัพธ์

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

การตั้งค่าความสูงของบรรทัดใน CSS