Create a Flex Container Code
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="STYLESHEET"type="text/css"href="web.css">
<title>web design</title>
</head>
<body>
<h1>Create a Flex CONTAINER</h1>
<div class="container">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
</body>
</html>
CSS Flex Container Style Code
.container{
display: flex;
background-color: dodgerblue;
}
.container >div{
background-color: #f1f1f1;
margin:10px;
padding:20px;
font-size:30px;
}
No comments:
Post a Comment