Assuming the rest of the web page’s code is valid, the followingcode fragments generate a nested list.
a) Describe the font size and color for each of the three listitems (for your description, it’s OK to provide only ascreenshot).
b) For each rule, describe which element(s) the rule affects andwhether the effect comes from the rule directly matching thatelement or whether it comes from CSS inheritance.
<style>
ol > li {font-size: 200%;}
ul {color: blue;}
.green {color: green;}
</style>
<body>
<ul>
<li>one
<ol>
<li>two
<ul>
<li class=”green”>three</li>
</ul>
</li>
</ol>
</li>
</ul>
</body>
Expert Answer
An answer will be send to you shortly. . . . .