학습한 내용
[html]
<div class="z-one"></div>
<div class="z-two"></div>
[css]
.z-one {
position: absolute;
width: 300px;
height: 400px;
background-color: yellow;
z-index: 10;
}
.z-two {
position: absolute;
width: 200px;
height: 300px;
background-color: blue;
z-index: 20;
}
[동일한 html 태그]
[css]
.z-one {
width: 300px;
height: 400px;
background-color: yellow;
}
.z-two {
position: absolute;
width: 200px;
height: 300px;
background-color: blue;
}
[html]
<div class="left-1"></div>
<div class="right-1"></div>
[css]
.left-1 {
float: left;
width: 100px;
height: 150px;
background-color: blue;
}
.right-1 {
float: right;
width: 100px;
height: 150px;
background-color: green;
}
[html]
<header></header>
<div class="left"></div>
<div class="center"></div>
<div class="right"></div>
<footer></footer>
[css]
header {
width: 100%;
height: 100px;
background-color: yellow;
}
.left {
float: left;
width: 100px;
height: 200px;
background-color: pink;
}
.center {
float: left;
width: 300px;
height: 200px;
background-color: blue;
}
.right {
float: right;
width: 100px;
height: 200px;
background-color: green;
}
footer {
clear: both;
width: 100%;
height: 100px;
background-color: black;
}
header, div, footer : block 요소의 성격 -> y축 정렬(줄바꿈)
① class="left"에 float:left;
: center의 레이어가 left 레이어의 선상에 겹쳐짐
② class="center"에 float:left;
: center 레이어가 left 레이어 옆으로 정렬됨, right 레이어가 left, center 레이어의 선상에 겹쳐짐
③ class="right"에 float:right;
: left, center 레이어와 같은 선상의 오른쪽에 정렬됨, footer 레이어가 left-center-right의 선상에 겹쳐짐
④ footer에 clear:both;
적용 : float 속성을 제거 -> y축 정렬(줄바꿈)
left, center, right : float에 의해 3차원 속성 갖게 됨
float을 마지막으로 사용한 태그 다음에 나오는 태그에 clear 속성을 삽입
-> both : left/right 둘 다 사용을 취소
[html]
<header></header>
<section>
<div class="left"></div>
<div class="center"></div>
<div class="right"></div>
</section>
<footer></footer>
[css]
header {
width: 100%;
height: 100px;
background-color: yellow;
}
.left {
float: left;
width: 100px;
height: 200px;
background-color: pink;
}
.center {
float: left;
width: 300px;
height: 200px;
background-color: blue;
}
.right {
position: static;
/*position: relative;*/
/*position: absolute;*/
/*position: fixed;*/
float: right;
width: 100px;
height: 200px;
background-color: green;
}
footer {
clear: both;
width: 100%;
height: 100px;
background-color: black;
}
section {
width: 1400px;
height: 200px;
background-color: orange;
}
주의점 1 : 브라우저를 줄일 때 각 태그의 레이어에 틀어짐 발생
주의점 2: 자식 태그에 3차원 속성이 부여됐을 때(float +fixed, absolute) 자식의 높이 값이 부모의 높이 값에 영향을 주지 않는다.
주의점 3 : 자식 태그(right)에 부여하는 position 속성값의 역할
[html]
<div class="left-2"></div>
<div class="right-2"></div>
<div class="clearfix"></div>
<footer></footer>
[css]
.left-2 {
float: left;
width: 100px;
height: 150px;
background-color: yellow;
}
.right-2 {
float: right;
width: 100px;
height: 150px;
background-color: blue;
}
footer {
width: 100%;
height: 100px;
background-color: black;
}
.clearfix {
clear: both;
}
clear:both;
을 넣기보다 ‘clearfix’라는 class를 가진 공간을 따로 만들어 clear;both;
를 부여한다.[html]
<div class="over-box">
<p>Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you Nice to meet you </p>
</div>
[css]
.over-box {
overflow: hidden;
overflow-y: scroll;
width: 200px;
height: 200px;
background-color: yellow;
}
overflow : hidden;
: 영역을 벗어나는 내용은 감춰짐overflow-y(x): scroll;
: y(x)축 방향으로 스크롤 생성하여 감춰진 내용을 보여줌[html]
<section>
<div class="left-2"></div>
<div class="right-2"></div>
</section>
<div class="clearfix"></div>
<footer></footer>
[css]
.left-2 {
float: left;
width: 100px;
height: 150px;
background-color: yellow;
}
.right-2 {
float: right;
width: 100px;
height: 150px;
background-color: blue;
}
footer {
width: 100%;
height: 100px;
background-color: black;
}
.clearfix {
clear: both;
}
section {
overflow: hidden;
width: 800px;
background-color: orange;
}
overflow : hidden;
삽입하면 자식 태그의 높이 값이 부모 태그에 영향을 준다.[html]
<div class="container">
<div class="item one"></div>
<div class="item two"></div>
<div class="item three"></div>
</div>
[css]
.container {
display: flex;
/*flex-direction: row;*/
/*flex-wrap: wrap;*/
/*flex-flow: row wrap;*/
/*justify-content: space-between;*/
/*align-items: center;*/
width: 1000px;
height: 500px;
border: solid 10px red;
}
.item {
width: 200px;
height: 300px;
}
.one {
height: 100px;
background-color: yellow;
}
.two {
height: 200px;
background-color: blue;
}
.three {
/*width: 900px;*/
height: 300px;
background-color: orange;
}
float의 발전된 개념, 제약 사항이 적다.
display:flex;
: 부모 태그에 삽입, 자식 태그의 레이어를 x축으로 (왼쪽부터) 정렬
flex-direction
flex-wrap
flex-flow: row nowrap;
: direction과 wrap을 한 번에 지정
justify-content : x축 정렬에 대한 속성
align-items : y축 정렬에 대한 속성
https://flexbox.help/ : flex 속성 시각적으로 확인
[html]
<div class="center-1"></div>
<div class="center-2"></div>
[css]
.center-1 {
width: 300px;
height: 300px;
background-color: yellow;
margin: 0 auto;
}
.center-2 {
position: relative;
width: 300px;
height: 300px;
background-color: blue;
left: 50%;
margin-left: -150px;
}
※ margin에 속성값 두 개를 입력하면 전자: 상/하 margin, 후자: 좌/우 margin
margin: 0 auto;
: 상/하 = 0, 좌/우 = 자동
-> 브라우저 크기 상관 없이 x축 중앙 정렬, 주로 block 요소에서 사용
① left: 50%;
: 본인의 왼쪽면을 기준으로 50% 이동(왼쪽면과 중앙선 일치)
② margin-left: -150px;
: 본인 width의 절반값만큼 왼쪽으로 이동
-> 브라우저 크기 상관 없이 x축 중앙 정렬
width 값을 수정할 때 margin-left 값도 수정해줘야 하는 단점이 있다.
https://css-tricks.com/centering-css-complete-guide/ : 중앙 정렬 공식
학습한 내용 중 어려웠던 점 또는 해결 못한 것들
형제 관계에 따른 포지션 상관관계를 position 속성값을 삽입하여 연습해 보았다.
해결 방법 작성
[html]
<div class="z-one"></div>
<div class="z-two"></div>
[css]
.z-one {
/*position: staatic;*/
/*position: fixed;*/
/*position: relative;*/
/*position: absolute;*/
width: 200px;
height: 400px;
background-color: yellow;
z-index: 10;
}
.z-two {
/*position: staatic;*/
/*position: fixed;*/
/*position: relative; */
/*position: absolute;*/
width: 200px;
height: 300px;
background-color: blue;
z-index: 20;
}
뒷 태그의 position이 static 일 때는 앞 태그의 z-index만 적용되므로 앞 태그의 레이어가 위로 겹친다.
학습 소감
레이아웃의 속성들을 눈으로 확인하기 위해 조건들을 계속 바꿔가며 코드를 적용하는 것이 따라가기 좀 힘들었다.