목차
justifyContent 예제 - flex 항목 가로 정렬
justifyContent 정의
justifyContent 구문
justifyContent 예제 - flex 항목 가로 정렬
<style>
#hz {
width: 400px;
height: 150px;
border: 1px solid gray;
display: flex;
justify-content: space-around;
}
#hz div {
width: 70px;
height: 70px;
}
</style>
<div id="hz">
<div style="background-color:pink;"></div>
<div style="background-color:coral;"></div>
<div style="background-color:khaki;"></div>
<div style="background-color:lightblue;"></div>
</div>
<button onclick="homzzang()">클릭</button>
<script>
function homzzang() {
document.getElementById("hz").style.justifyContent = "space-between";
}
</script>
결과보기
justifyContent 정의
flex 항목 가로 정렬 설정/반환.
1.
alignContent 속성 : flex 항목 세로 정렬 설정/반환.
2.
CSS justify-content 속성 참고
justifyContent 구문
반환
object .style.justifyContent
설정
object .style.justifyContent = "flex-start|flex-end|center|space-between|space-around|initial|inherit"
[속성값]
CSS justify-content 속성 참고
[반환값]
요소의 justify-content 속성 나타내는 문자열 반환.
주소 복사
랜덤 이동