I did some more reading about pseudo-elements and pseudo-classes.
I found that you can also replace (method 1):
.sb-caption:empty{display:none;}
.sb-caption:before{content:"";padding-left:50px;}
.sb-caption:after{content:"";padding-right:20px;}
with (method 2):
.caption:empty{display:none;}
div[class="caption"]{padding-left:50px;padding-right:20px;}
This, second, method is apparently accepted by older versions of IE, but with some undesirable results anyway.
In both cases, the HTML stays the same:
<div>
<div class="sb-wrapper">
<div class="sb-caption">TEST</div>
</div>
If you remove the words 'TEST', the #sbcaption div will disappear in both cases.
Tested in the latest versions of Chrome, Firefox, IE, and Safari.
If anyone else has another hack, or other way of achieving the same effect (but being even more cross browser friendly ... IE7) please share!
You can see both effects on this test page: http://djpolbeeta.com/test-index.html
(temporary link)
Open in any browser. The darker rectangle is CSS method 1, the lighter rectange is CSS method 2.