Skip to content

Instantly share code, notes, and snippets.

@prof3ssorSt3v3
Created September 17, 2018 13:27
Show Gist options
  • Save prof3ssorSt3v3/4e25c75c6e2ff53202a54806e6bccc2e to your computer and use it in GitHub Desktop.
Save prof3ssorSt3v3/4e25c75c6e2ff53202a54806e6bccc2e to your computer and use it in GitHub Desktop.
<!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