<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.wrapper {
	display: flex;
	/* kich hoat flex box*/
	flex-flow: row wrap;
	font-weight: bold;
	text-align: center;
}

.wrapper&gt;* {
	padding: 10px;
	flex: 1 100%;
	/* cho táº¥t cáº£ pháº§n tá»­ bÃªn trong cÃ³ Ä‘á»™ dÃ&nbsp;i 100% vÃ&nbsp; tá»‰ lá»‡ chiáº¿m khÃ´ng gian trá»‘ng lÃ&nbsp; nhÆ° nhau*/
}

.header-flex-2 {
	background: tomato;
}

.footer-flex-2 {
	background: lightgreen;
	order: 4;
}

.main {
	text-align: left;
	background: deepskyblue;
	height: 400px;
	
}

/* 2 pháº§n aside sáº½ chá»‰ chiáº¿m 1 pháº§n khÃ´ng gian */
.aside-1 {
	background: gold;
	height: 400px;
	order: 1;
}

.aside-2 {
	background: hotpink;
	height: 400px;
	order: 3;
}

@media only screen and (min-width: 1200px) {
	.main{
		flex: 3 0px;
		/* cho pháº§n ná»™i dung main á»Ÿ giá»¯a chiáº¿m 3 pháº§n khÃ´ng gian trá»‘ng so vá»›i 2 pháº§n aside bÃªn cáº¡nh */
		order: 2;
	}
}

@media only screen and (min-width: 600px) {
	.aside {
		flex: 1 0 0;
	}
}</pre></body></html>