Created
December 14, 2025 04:14
-
-
Save joabj/0505a0535d364cc6fa7032141f76d2a0 to your computer and use it in GitHub Desktop.
From the tutorial "Center a Div"
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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="styles.css"> | |
| <style> | |
| .container {width: 90%;} | |
| .left { | |
| width: 44%; | |
| float: left; | |
| background-color: red; | |
| } | |
| .right { | |
| width: 44%; | |
| float: right; | |
| background-color: orange; | |
| } | |
| .clearfix { | |
| clear: both; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="left"> | |
| <h2>First Column</h2> | |
| <p> | |
| Chicken | |
| </p> | |
| </div> | |
| <div class="right"> | |
| <h2>Second Column</h2> | |
| <p> | |
| Waffles | |
| </p> | |
| </div> | |
| <div class="clearfix"></div> | |
| </div> | |
| </body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment