[Refdb-users] html code (more)
Status: Beta
Brought to you by:
mhoenicka
From: Bruce D'A. <bd...@fa...> - 2003-09-09 23:12:21
|
I wonder if this: <p class='citekey'>CITEKEY:Smith1992b</p> ...would be better as: <p class="result_header">Citekey</p> <p class="citekey">Smith1992b</p> That way you can control the presentation better with CSS. For example, I'd tend to want to have the "citekey" header in bold, and I'd prefer to leave whether it is all-uppercase or not as a decision handled in CSS. Another alternative, I suppose, would be: <p><span class="result_header">Citekey</span><span class="citekey">Smith1992b</span></p> Bruce PS - Note also the double-quote around the attribute values, which is mandatory for xhtml; isn't it? |