Put a <div>
around the markup where you want the line to appear to next, and use CSS to style it:
.verticalLine {_x000D_
border-left: thick solid #ff0000;_x000D_
}
_x000D_
<div class="verticalLine">_x000D_
some other content_x000D_
</div>
_x000D_