A Pen by Stephen Huh on CodePen.
Created
July 23, 2016 14:05
-
-
Save stephenhuh/b06e2995a4b59c30c2ba1c2191f4e263 to your computer and use it in GitHub Desktop.
Text-align
This file contains 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
<h1> header block</h1> | |
<h2>header block</h2> | |
<p>p tag text </p> | |
<div class="box"> | |
text within a block element | |
</div> |
This file contains 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
* { | |
text-align: center; | |
} | |
.box { | |
background-color: blue; | |
width: 150px; | |
height: 150px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment