I am in the process of trying to make a certain element, time, appear inline using CSS.
The HTML Code is:
<nav class="vertical">
<ul>
<li><a href="#">Home Page</a></li>
<li><a href="#">Black Canyon Map</a></li>
<li><a href="#">Black Lake Map</a></li>
...
<li><a href="#">Twin Sisters Map</a></li>
</ul>
</nav>
...
I am particularly interested in the section that begins with "section id="map""
Do you think this CSS code will work? If not, what would be the correct piece of code?
figure figcaption time {
display: inline;
}