I'm learning to work with Bootstrap and am a little confused by the footer and cite elements. Specifically, I'd like to know if it's OK (or advised) to use them outside blockquotes. (I glanced at these threads -- Valid use of <q>, <blockquote> and <cite> Correct use of Blockquote, q and cite? )
I'm developing a series of floated divs that contain images and/or text. In the first example below, I insert the text in a div with the class "Caption." The text includes a cite tag.
The second example is the same except I replaced div.Caption with a footer. You can see working examples @ http://jsfiddle.net/cp0fwqbx/3/ (However, I wasn't able to link to Bootstrap's CSS page, so the classes pull-left and pull-right apparently aren't working.)
I'm guessing that both methods below are OK, but I wondered if one has a distinct advantage over the other. Or should I only use the footer and cite elements with blockquotes?
HTML
<div class="Shadow pull-left Wx250">
<div class="Img"><img src="http://www.politix.us/images/home/header.gif" alt="Politix Header">
<div class="Caption">Politix Header <cite>courtesy <a href="http://www.geobop.com" title="Geobop">Geobop</a></cite></div>
</div>
</div>
<br style="clear: both;">
<div class="Shadow pull-right Wx250">
<div class="Img"><img src="http://www.politix.us/images/home/header.gif" alt="Politix Header">
<footer>Politix Header <cite>courtesy <a href="http://www.geobop.com" title="Geobop">Geobop</a></cite></footer>
</div>
</div>
CSS
body { font-family: Arial, Verdana, sans-serif; }
.Shadow.pull-right { margin-left: 30px; }
.Shadow.pull-left { margin-right: 30px; }
.Shadow .Txt, .Shadow .Img { position: relative; bottom: 15px; left: 15px; }
.Shadow.pull-left, .Shadow.pull-right { margin-top: 25px; }
.Shadow { background: #ccc; }
.Img .Txt, .Img .Caption, .Img footer { padding: 5px 15px; background: #fff; border: none; border-bottom: 1px dotted #000; }
img { width: 100%; }
.Wx250 { width: 250px; }