This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.box { | |
border: solid #333 2px; | |
background: #a8a8a8; | |
width: 150px; | |
margin: 2px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
display: flex; | |
background: #1c9dc5; | |
font-family: 'Rubik', sans-serif; | |
height: 200px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
display: flex; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { | |
display: flex; | |
background: #1c9dc5; | |
font-family: 'Rubik', sans-serif; | |
} | |
.box { | |
border: solid #333 2px; | |
background: #a8a8a8; | |
height: 150px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Flexbox Example</title> | |
<link type="text/css" rel="stylesheet" href="styles.css"> | |
<link href="https://fonts.googleapis.com/css?family=Rubik" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container"> | |
<div id="box1" class="box">#1</div> |
NewerOlder