I am currently using CSS to make part of my text bold, but I only want a specific portion of the line to be bold. How can I achieve this effect without making the entire line bold? Check out my code below:
HTML
<div>
<div id="titleLabels">Revision:</div> 1.0 draft A
</div>
CSS
#titleLabels
{
font-weight: bold;
}
However, the output is not what I desired. I want the "1.0 draft A" bit to align with the part that says "Revision".
Any suggestions on how I can accomplish this?