Flex

by sandipchitale

HTML

<div flex>
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
</div>

CSS

[flex] {
  display: flex;
  flex-direction: row;
  background-color: purple;
  padding: 10px;
}

span {
  min-width: 100px;
  min-height: 100px;
  line-height: 100px;
  background-color: orange;
  border: 1px solid black;
  margin: 10px;
  text-align: center;
  vertical-align: middle;
  color: white;
  font-size: 50px;
}