div id in css code example

Example 1: css id

<style>
	#your_id{
		color: blue;
		font-size: 24px;
	}
</style>
<h1 id="your_id">Example text</h1>

Example 2: css class

.myclass {
  border:1px solid black;
  background-color: #d2d2d2;
  height:20px;
  width:60px;
}
/*If you give this class to a div in html, it will get the styles you gave
to that class. You can add multiple classes to a div, and multiple divs
can get that class. */
/* I hope I helped! */

Example 3: css id

#id {
  css declarations;
}
Demo

Example 4: how to call an id in css

<style>
  #selector {
  color: red;
}
/* # is id selector */
</style>


<div id="selector">
<p>This is an id</p>
</div>

Example 5: id in css

#id{
    color:red;
}

Example 6: div id css

<p class="haut">
<a href="#haut">Haut de page</a>
</p>

Tags:

Misc Example