I'd like to add a border around a DIV like this:
This doesn't have any effect:
I want to use it in conjunction with the reordering CSS in this thread:
http://www.princexml.com/bb/viewtopic.php?t=1107
but I tested both with and without that CSS.
<div class="figure">
<p class="title"><b>Figure 5.1.</b></p>
<div class="figure-contents">
<div class="screenshot">
<div class="mediaobject">
<img src="resources/image.png">
</div>
</div>
</div>
</div>
This doesn't have any effect:
div.figure {
border: black solid 3px;
color: red;
margin: 5em;
}
I want to use it in conjunction with the reordering CSS in this thread:
http://www.princexml.com/bb/viewtopic.php?t=1107
but I tested both with and without that CSS.