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

คุณสมบัติความสูงสูงสุดใน CSS


เราสามารถกำหนดความสูงสูงสุดคงที่สำหรับกล่องเนื้อหาขององค์ประกอบโดยใช้คุณสมบัติ CSS max-height ซึ่งไม่อนุญาตให้กล่องเนื้อหาขององค์ประกอบสูงขึ้นแม้ว่าความสูงจะมากกว่าความสูงสูงสุด

ไวยากรณ์

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

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

มาดูตัวอย่างคุณสมบัติ CSS max-height กัน −

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<title>CSS max-height Property</title>
</head>
<style>
* {
   padding: 2px;
   margin:5px;
}
button {
   border-radius: 10px;
}
#containerDiv {
width:70%;
margin: 0 auto;
   padding:20px;
   background-image: linear-gradient(135deg, #dc3545 0%, #9599E2 100%);
   text-align: center;
   border-radius: 10px;
}
#contentDiv{
   max-height:50px;
   overflow: hidden;
}
</style>
<body>
<div id="containerDiv">
<div id="contentDiv">
This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text. This is paragraph 1 with some dummy text.
</div>
<button onclick="add()" class="btn">Set maxHeight</button>
</div>
<script>
function add() {
   document.querySelector('#contentDiv').style.maxHeight = "100px";
}
</script>
</body>
</html>

ผลลัพธ์

ก่อนคลิก 'ตั้งค่าความสูงสูงสุด' ปุ่ม −

คุณสมบัติความสูงสูงสุดใน CSS

หลังจากคลิก 'ตั้งค่าความสูงสูงสุด' ปุ่ม −

คุณสมบัติความสูงสูงสุดใน CSS

มาดูตัวอย่างอื่นสำหรับคุณสมบัติ CSS max-height กัน −

ตัวอย่าง

<!DOCTYPE html>
<html>
<head>
<title>CSS max-height</title>
<style>
form {
   width:70%;
   margin: 0 auto;
   text-align: center;
}
* {
   padding: 2px;
   margin:5px;
}
#containerDiv {
   margin: 0 auto;
   max-height: 150px;
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>CSS max-height</legend>
<div id="containerDiv">
<img id="image" src="https://www.tutorialspoint.com/openshift/images/openshift-mini-logo.jpg">
</div>
</fieldset>
</form>
</body>
</html>

ผลลัพธ์

ก่อนกำหนดความสูงสูงสุด -

คุณสมบัติความสูงสูงสุดใน CSS

หลังจากกำหนดความสูงสูงสุดแล้ว -

คุณสมบัติความสูงสูงสุดใน CSS