<style>
What is the purpose of the
How does the nonce
attribute enhance security in the <style>
element?
What happens when multiple <style>
elements are included in a document?
What is the function of the blocking
attribute in the <style>
element?
In the following code, what background color will the paragraph have?
<style>
p { background-color: blue; }
</style>
<style>
p { background-color: yellow; }
</style>
<p>This is my paragraph.</p>