Created
March 22, 2015 01:51
-
-
Save alekhinen/37b95a9679f57d68ca80 to your computer and use it in GitHub Desktop.
Example responsive divs.
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>Responsive Divs</title> | |
<link rel="stylesheet" type="text/css" href="./example.css"> | |
</head> | |
<body> | |
<div class="section-container"> | |
<div class="section"> | |
<h3>container 1</h3> | |
</div> | |
<div class="section"> | |
<h3>container 2</h3> | |
</div> | |
<div class="section"> | |
<h3>container 3</h3> | |
</div> | |
<div class="section"> | |
<h3>container 4</h3> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment