I'm building a form and I need a TITLE and a LINE on which to hold each data point. The layout of this document would make it horrendous to use tables for this, so I'm using spans. There is one span to hold the TITLE and another to hold the LINE. Both spans are contained in a <p></p> element and I need the LINE span to expand/contract to fill the remainder of the containing element AFTER the TITLE span. Using the code below i'm able to make it work in the browser with no issues, but when I print the document Prince seems to not be respecting the "overflow:hidden" css. I'm running (and for now stuck running) version 8.1. Would this issue be fixed in the latest release? Screenshot of issue: http://screencast.com/t/mg4pBaY1ZhR
<p>
<span class="test_title">THIS IS THE TITLE</span>
<span class="test_line">Here is where some dynamic text will be</span>
</p>
.test_title {
float: left;
vertical-align: bottom;
}
.test_line {
font-family: monaco,Consolas,Lucida Console,monospace;
border-bottom: 1px dotted #000;
padding-left: 15px;
display: block;
overflow:hidden;
}