My knees always knock when someone says "this is a simple one". Often, it isn't.
you and me both.
See if this fits your needs:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.rule{padding:2em; position: relative;}
.rule:after {content:""; display:block; border-bottom:1px solid #000; margin-top: 1em; margin-right:3em ; text-align:right; height:.6ex; line-height: 1;}
.rule:before {content:"*"; position: absolute; right:1.5em; bottom:.25em; font-size: 200%}
</style>
</head>
<body>
<div class="rule">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</body>
</html>
replace the "*" in content with whatever character from the icon font you are using, tweak font-size in .rule:before to suit your needs ( you may need to PROPORTIONALLY adjust the other em/ex based spacing in the other rules as well)
hope that helps
Bookmarks