Answers for "what i should use for html id in css"

CSS
7

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>
Posted by: Guest on June-03-2020

Code answers related to "what i should use for html id in css"

Browse Popular Code Answers by Language