Created
September 17, 2018 13:27
-
-
Save prof3ssorSt3v3/4e25c75c6e2ff53202a54806e6bccc2e 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Div vs. Span</title> | |
<style> | |
span{ | |
color: hsla(0deg, 50%, 100%, 0.5); | |
background-color: cornflowerblue; | |
} | |
div{ | |
color: hsla(0deg, 50%, 100%, 0.5); | |
background-color: coral; | |
} | |
</style> | |
</head> | |
<body> | |
<header> | |
<h1>Div vs. Span</h1> | |
</header> | |
<main> | |
<p>asdf<span>span!</span>asdf | |
<span>span!</span>asdf | |
<span>span!</span>asdfasdf</p> | |
<div>div!</div> | |
<div>div!</div> | |
<div>div!</div> | |
</main> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment