Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pexceful/00d93b6b295be00967f77d3e25e8d566 to your computer and use it in GitHub Desktop.
Save pexceful/00d93b6b295be00967f77d3e25e8d566 to your computer and use it in GitHub Desktop.
<!doctype html>
<title>Selector Quiz</title>
<style>
p{
background-color: gold;
}
.a {
background-color: purple;
}
#a {
background-color: blue;
}
#b {
background-color: orange;
}
</style>
<p id="a">Paragraph 1
<p id="b" class="a">Paragraph 2
<p class="a">Paragraph 3
<p class="b">Paragraph 4
@OmgImAlexis
Copy link

<!doctype html>
<html>
    <head>
        <title>Selector Quiz</title>
        <style>
        p{
          background-color: gold;  
        }

        .a {
          background-color: purple;
        }

        #a {
          background-color: blue;
        }

        #b {
          background-color: orange;
        }
        </style>
    </head>
    <body>
        <p id="a">Paragraph 1</p>
        <p id="b" class="a">Paragraph 2</p>
        <p class="a">Paragraph 3</p>
        <p class="b">Paragraph 4</p>
    </body>
</html>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment