Skip to content

Instantly share code, notes, and snippets.

@danyalzia
Created January 13, 2015 14:01
Show Gist options
  • Save danyalzia/83739756c2d0f3b20f3d to your computer and use it in GitHub Desktop.
Save danyalzia/83739756c2d0f3b20f3d to your computer and use it in GitHub Desktop.
div vs span
<!DOCTYPE html>
<html>
<head>
<title>
div vs span
</title>
</head>
<style>
.green-section {
color:green;
}
.blue-text {
color:blue;
}
</style>
<div class="green-section">
<p>This is the text written in green color</p>
</div>
<div class="green-section">
<p>This is the <span class="blue-text">blue text</span> in the green-section div</p>
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment