Created
April 9, 2019 13:35
-
-
Save pupubird/e1bbb17ca62325b58c1ed1eb1862d220 to your computer and use it in GitHub Desktop.
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> | |
<title></title> | |
<link rel="stylesheet" href="displayCss.css"> | |
</head> | |
<body> | |
<p class="block">Hello world (display: block)</p> | |
<p class="block">Goodbye world (display: block)</p> | |
<hr> | |
<p class="inline">Hello world (display: inline)</p> | |
<p class="inline">Goodbye world (display: inline)</p> | |
<hr> | |
<p class="inlineBlock">Hello world (display: inline-block)</p> | |
<p class="inlineBlock">Goodbye world (display: inline-block)</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment