I am creating a list with a name, job description, and location. This list contains 30 or so names. I would like the last item-location in the list to have about 20px of margin below to separate the names. So it would look like:
Name
job description
location
Name
job description
locationName
job description
locationetc.
I'm also having some issues with text color, but the main issue is the spacing.
<style> .hed_Brown {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 16px;
color: #996633;
line-height: 18px;
margin-left: 15px;
}
.hed_Green {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 16px;
color: #7f9c99;
line-height: 18px;
margin-left: 15px;
}
.hed_Blue {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size: 16px;
color: #011e41;
line-height: 18px;
margin-left: 15px;
margin-bottom: 20px;
}
</style>
<span class="hed_Brown">Robert Mazzeo</span>
<br> <span class="hed_Green">Load Out Manager</span>
<br> <span class="hed_Blue">Lakeland FL</span>
<br> <span class="hed_Brown">WJ Mahon Jr.</span>
<br> <span class="hed_Green">Sales Manager</span>
<br> <span class="hed_Blue">Jacksonville FL</span>
<br> <span class="hed_Brown">Charles Metzger</span>
<br> <span class="hed_Green">Display Assistant</span>
<br> <span class="hed_Blue">Wichita KS</span>
<br>