Assuming the rest of the web page’s code is valid, the followingcode fragments generate a nested list with three borders.
a) Describe what each of the three borders surrounds (for yourdescription, it’s OK to provide only a screenshot).
b) For each rule, describe which element(s) the rule appliesto.
<style>
ul li {border-style: solid;}
ul > li {border-color: red;}
</style>
<body>
<ul>
<li>one</li>
<li>two
<ol>
<li>three</li>
</ol>
</li>
</ul>
</body>
Expert Answer
An answer will be send to you shortly. . . . .