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

CSS에서 Flex 항목의 크기 제어

<시간/>

CSS에서 Flex 항목의 크기를 제어하려면 flex 속성을 사용하십시오. 다음은 플렉스 항목의 크기를 제어하는 ​​코드입니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
body {
   font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container {
   display: flex;
   width: 100%;
}
div {
   width: 200px;
   height: 200px;
   color: white;
   text-align: center;
   font-size: 30px;
}
.first {
   background-color: rgb(55, 0, 255);
   flex: 2 1 auto;
}
.second {
   background-color: red;
}
.third {
   background-color: rgb(140, 0, 255);
}
</style>
</head>
<body>
<h1>Controlling flex items dimesions</h1>
<div class="container">
<div class="first">First Div</div>
<div class="second">Second Div</div>
<div class="third">Third Div</div>
</div>
</body>
</html>

출력

위의 코드는 다음 출력을 생성합니다 -

CSS에서 Flex 항목의 크기 제어