Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

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/machine_learning_with_python/images/machine-learning-with-python-mini-logo.jpg">
</div>
</fieldset>
</form>
</body>
</html>

출력

최대 높이가 정의되기 전 -

CSS 차원 속성

최대 높이가 정의된 후 -

CSS 차원 속성

CSS min-width 속성의 또 다른 예를 살펴보겠습니다. -

예시

<!DOCTYPE html>
<html>
<head>
<title>CSS min-width 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{
   min-width:200px;
   border: 1px solid black;
}
</style>
<body>
<div id="containerDiv">
<div class="contentDiv">
This is paragraph 1 with some dummy text.
</div>
<div class="contentDiv">
This is paragraph 2 with some dummy text.
</div>
<div class="contentDiv">
This is paragraph 2 with some dummy text.
</div>
<button onclick="add()" class="btn">Set minWidth</button>
</div>
<script>
function add() {
   document.querySelectorAll('.contentDiv')[1].style.minWidth = "100%";
}
</script>
</body>
</html>

출력

'minWidth 설정'을 클릭하기 전에 버튼 -

CSS 차원 속성

'최소 너비 설정'을 클릭한 후 버튼 -

CSS 차원 속성