blob: 9c55caf3e2e69b432d2a363205c7eeb559c6cbb9 [file] [log] [blame] [edit]
<!DOCTYPE html>
<html>
<head>
<style>
.flexbox {
display: flex;
}
.flex-item {
width: 50px;
height: 50px;
margin-top: 10px;
background-color: green;
}
</style>
</head>
<body>
<div class="flexbox">
<div id="flex-item" class="flex-item"></div>
</div>
</body>
</html>