How to use id and class in HTML and CSS

1 Answer

0 votes
<!-- index.php -->

echo '<div id="div_id" class="div_class">Your Text Here</div>';

<!-- run: 'Your Text Here' color is #fff -->
<!-- To avoid conflict use id for javascript (getElementById...) and class for css 
<!-- Use id for css if there is no javascript -->

 

/* style.css */

#div_id {
   color:#fff
}
.div_class {
   color:#000
}

 



answered Apr 29, 2015 by avibootz
edited Apr 29, 2015 by avibootz
...