That won't work because the .title element is a block element, which means it stretches to fill the parent container. One way to achieve the effect you want is to edit your PageTemplate:
change this line:
<div class='title' macro='view title'></div>
to this:
<div class='title' ><span class="highlightTitle" macro='view title'></span></div>
then in your StyleSheet add:
.highlightTitle{
background-color:#6F0;
}
Regards,
axs