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

HTML DOM 스타일 flexBasis 속성

<시간/>

HTML DOM 스타일 flexBasis 속성은 플렉스 디스플레이가 있는 요소의 초기 크기를 지정하는 데 사용됩니다. flexBasis 속성은 flex-basis의 auto보다 다른 값의 너비보다 우선 순위가 높습니다.

다음은 −

의 구문입니다.

flexBasis 속성 설정하기 -

object.style.flexBasis = "number|auto|initial|inherit"

위의 속성은 다음과 같이 설명됩니다 -


설명
숫자
유연한 항목의 초기 길이를 백분율 또는 모든 법적 길이 단위로 지정합니다.
자동
길이를 유연한 항목 길이와 동일하게 설정합니다. 길이가 지정되지 않으면 내용에 따릅니다. 이것은 기본값입니다.
초기
이 속성을 초기 값으로 설정합니다.
상속
상위 속성 값 상속

flexBasis 속성의 예를 살펴보겠습니다 -

예시

<!DOCTYPE html>
<html>
<head>
<style>
   #demo, #demo2{
      background-color: #fff8dc;
      margin: 10px;
      height: 100px;
      box-shadow: 0 0 0 4px brown;
      display: flex;
   }
   #demo div {
      flex-basis: 110px;
   }
</style>
<script>
   function changeFlexBasis() {
      for(var i=1;i<3;i++){
         document.getElementsByTagName("DIV")[i].style.flexBasis="200px";
      }
      document.getElementById("Sample").innerHTML="The flex basis value is increased to 200px";
   }
</script>
</head>
<body>
   <h2>Demo Heading</h2>
   <div id="demo">
      <div><img src="https://www.tutorialspoint.com/images/home_tensor_flow.png"></div>
      <div><img src="https://www.tutorialspoint.com/images/home_blockchain_python.png"></div>
      <div><img src="https://www.tutorialspoint.com/images/multilanguage-tutorials.png"></div>
   </div>
   <p>Change the flex basis property for the image present inside divs by clicking the below button</p>
   <button onclick="changeFlexBasis()">Change Flex Basis</button>
   <p id="Sample"></p>
</body>
</html>

출력

HTML DOM 스타일 flexBasis 속성

"Flex 기반 변경을 클릭하면 " 버튼 -

HTML DOM 스타일 flexBasis 속성