<div id="compv-navbar">
<a href="#"><img src="image1.png" id="icon1"></a> | <a href="#"><img src="image2.png" id="icon2"></a> | <a href="#"><img src="image3.png" id="icon3"></a> | This is the text I want to select and style specifically.
</div>
I would like to do this in HTML/CSS. No jQuery or Javascript.
Also...I would like to do this without using another <div>
tag, because it throws off the presentation.
Edit: For clarification, I can't apply the style to 'compv-navbar' because essentially I would like to 'enclose' that specific text. I would like to be able to style it as if it were it's own div, without the div. If I were to style the entire compv-navbar div, it would do all the pipes (|) and I don't want that. I just want that specific piece of text to be styled.
Thanks.