I'm new to CSS and I want to minimize the amount of tagging I am doing in an HTML document.
Is there a way to define newlines as having <br /> so that for a given <div> that I've defined I can do the following:
.description {
br: on;
color: #D3E22A;
width: wrap;
}
...
I am trying to identify all the <UL> that contain a menu list by defining the ID like this:
<ul id="menutop">
<li><a href="#">item1</a></li>
<li><a href="#">item2</a></li>
<li><a href="#">item3</a></li>
</ul>
<ul id="menumain">
<li><a href="#">item1</a></li>
<li><a href="#">item2</a></li>
<li><a href="#">item3</a...
<div id=menu>
<ul>
<li class="section-title">auto-text1</li>
<li class="section-title">auto-text2</li>
<li class="section-title">auto-text3</li>
</ul>
</div>
How can I give special treatment to auto-text3 through css?
...