Skip to content

Instantly share code, notes, and snippets.

@kushalseth
Created August 9, 2020 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kushalseth/6ecc3a0d295e93d2c2796585ad46a458 to your computer and use it in GitHub Desktop.
Save kushalseth/6ecc3a0d295e93d2c2796585ad46a458 to your computer and use it in GitHub Desktop.
CSS for developer
<!DOCTYPE html>
<html>
<head>
<style>
div, p {
background-color: yellow;
}
</style>
</head>
<body>
<h1>This is h1 directly under body</h1>
<div>
<h2>I am h2 directly under div</h2>
<p>This is para inside div, but not directly inside div</p>
</div>
<div>
<p>This is para directly inside div</p>
<span><p>This is para inside span</p></span>
</div>
<p>I am paragraph directly inside the body and below a div</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment