너비가 min-width보다 작더라도 요소의 콘텐츠 상자가 더 좁아지지 않도록 하는 CSS min-width 속성을 사용하여 요소의 콘텐츠 상자에 대해 고정된 최소 너비를 정의할 수 있습니다.
구문
CSS min-width 속성의 구문은 다음과 같습니다 -
Selector {
min-width: /*value*/
} 예시
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> 출력
다음은 위 코드의 출력입니다 -
'최소 너비 설정'을 클릭하기 전에 버튼 -

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

예시
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(62deg, #fbab7e 0%, #f7ce68 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">
Lorem Text
</div>
<div class="contentDiv">
This is paragraph 3 with some dummy text.
</div>
<button onclick="add()" class="btn">Set minWidth</button>
</div>
<script>
function add() {
var all = document.querySelectorAll('.contentDiv');
for(var i=0; i<all.length; i++)
all[i].style.minWidth = "100%";
}
</script>
</body>
</html> 출력
다음은 위 코드의 출력입니다 -
'최소 너비 설정'을 클릭하기 전에 버튼 -

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