Target Id In Html With Css Code Example


Example 1: 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 2: css how to style id


/*put a # infront of the id*/
/*<section id="example"></section>*/
#example{
margin: auto;
}

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy