-
-
Save modster/f06c6a71278cc6da097d6a02f22b0a13 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