myanmarlinks
7/2/2017 - 7:08 AM

CSS FlexBox Second

CSS FlexBox Second

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>CSS BOX</title>
	<link rel="stylesheet" href="css/reset.css">
	<link rel="stylesheet" href="style.css">
</head>
<body>
	<div id="container">
		<div class="box box-a">
			<p>A</p>
		</div>
		<div class="box box-b">
			<p>B</p>
		</div>
		<div class="box box-c">
			<p>C</p>
		</div>
		<div class="box box-d">
			<p>D</p>
		</div>
	</div>
</body>
</html>