가오리의 코딩일기

Flexbox Defense 본문

HTML+CSS+JavaScript/만들기

Flexbox Defense

류경혜 2022. 6. 2. 12:00

LEVEL1

.tower-group-1{
	display: flex;
	justify-context: center;
}

 

 

 

 

LEVEL2

.tower-group-1{
	display:flex;
	justify-content: flex-end;
}
.tower-group-2{
	display:flex;
	justify-content: center;
}
.tower-group-3{
	display:flex;
	justify-content: flex-end;
}

 

 

 

 

LEVEL3

.tower-group-1{
	display:flex;
	justify-content: center;
}
.tower-group-2{
	display:flex;
	justify-content: space-between;
}

 

 

 

 

LEVEL4

.tower-group-1{
	display:flex;
	align-items: flex-end;
}
.tower-group-2{
	display:flex;
	align-items: flex-end;
}

 

 

 

 

LEVEL5

.tower-group-1{
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}
.tower-group-2{
	display: flex;
	justify-content: center;
}
.tower-group-3{
	display: flex;
	justify-content: space-around;
	align-items: center;
}

 

 

 

 

LEVEL6

.tower-group-1{
	display:flex;
	align-items: center;
	justify-content: space-between;
}

 

 

 

 

LEVEL7

.tower-group-1{
	display: flex;
	flex-direction: column;
}
.tower-group-2{
	display: flex;
	flex-direction: column;
}

 

 

 

 

LEVEL8

.tower-group-1{
	display: flex;
	flex-dirction: column;
}
.tower-group-2{
	display: flex;
	flex-direction: column;
	align-items: center;
}

 

 

 

 

LEVEL9

.tower-group-1{
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-around;
}
.tower-group-2{
	display:flex;
	flex-direction: row-reverse;
	justify-content: space-around;
	align-items: center;
}

 

 

 

 

LEVEL10

.tower-group-1{
	display:flex;
	justify-content: space-around;
}
.tower-1-2{
	order: 2;
}
.tower-group-2{
	display: flex;
	justify-content: space-around;
}
.tower-2-1{
	order: 1;
}

 

 

 

 

LEVEL11

.tower-group-1{
	display: flex;
	justify-content: space-between;
}
.tower-1-1{
	align-self: flex-end;
}
.tower-1-3{
	align-self: flex-end;
}

 

 

 

 

LEVEL12

.tower-group-1{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tower-1-1{
	order: 1;
	align-self: flex-start;
}
.tower-1-2{
	order:2;
}
.tower-1-3{
	order:4;
	align-self: center;
}
.tower-1-4{
	order:3;
}
.tower-1-5{
	order:5;
	align-self: flex-end;
}

 

'HTML+CSS+JavaScript > 만들기' 카테고리의 다른 글

Easy Full Screen Loading Page  (0) 2022.06.27
HTML5와 CSS3를 사용해서 웹 페이지 하나 만들어보기  (0) 2022.06.04
CSS DINER(3)  (0) 2022.06.01
CSS DINER(2)  (0) 2022.06.01
CSS DINER(1)  (0) 2022.06.01