width는 길이를 조절하는 속성이다.
여기서는 min-width와 max-width에 대해서 알아보자
min-width : 최소 길이를 설정하는 속성(설정 길이보다 짧아지지 않는다.)
max-width : 최대 길이를 설정하는 속성(설정 길이보다 길어지지 않는다.)
<html>
<head>
<meta charset="UTF-8">
<title>요소의 넓이 조정</title>
<link rel="icon" href="btn.png">
<style>
div{
border: 3px solid skyblue;
text-align: center;
margin-top: 5px;
}
.ex1{
min-width: 500px;
}
.ex2{
max-width: 500px;
}
</style>
</head>
<body>
<div class="ex1">min-width: 500px</div>
<div class="ex2">max-width: 500px</div>
</body>
</html>
500px 이상 늘어나지 않는 max-width를 볼수 있다.
500px 이하로 줄어들지 않는 min-width를 볼 수 있다.
'Old > CSS' 카테고리의 다른 글
06_link (0) | 2018.10.19 |
---|---|
05_float (0) | 2018.10.19 |
04_background (0) | 2018.10.19 |
03_border (0) | 2018.10.17 |
02_Selector (0) | 2018.10.17 |