I am brand new to CSS and I am very confused, maybe someone can help me. I bought a book to help, and I noticed that inside of the HTML <style> tag you use the “div#” and sometime you use “div.”. What is the difference, and when do you use one appose top the other. For example
Example 1
<style>
div#summary {font-weight: bold;}
</style>
Example 2
<style>
div.release {font-weight: bold;}
</style>
Thanks in advance,
Example 1
<style>
div#summary {font-weight: bold;}
</style>
Example 2
<style>
div.release {font-weight: bold;}
</style>
Thanks in advance,