You may have noticed that, if you add a Content Query Web Part to your page and use the bulleted title style, that when, due to spacing, if your list item wraps to multiple lines, the actual bullet centers vertically in the middle. This may not be what you actually need.

If you need the bullet to vertically align to the top, just add a Content Editor web part to your page, and in your style tag, put the following CSS code:

.bullet 
{
 background-position: left top !important;
 padding-top:0px !important;
}

That’s all there is to it. Of course, if you want this style to be global, you could also put this code in the CSS page that governs your entire site.