Jump to content

scoped attribute for <style>


smus

Recommended Posts

I tested the code on Firefox, but it also applies styles for the rest of the HTML file:

 <div>
<style scoped>
h1 {color:red;}
p {color:blue;}
</style>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
</div>
 
<h1>This is a heading</h1>
<p>This is a paragraph.</p>

 

Edited by smus
Link to comment
Share on other sites

I tested and the scoped attribute does not work.

According to MDN, Firefox should support it, but it also says that the attribute is deprecated so it's best not to use it. Since the scoped attribute is deprecated, <style> elements should only go in the <head> section of the document.

  • Like 2
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...