Date: Sat, 23 Jun 2001 19:46:41 -0700 (PDT) From: Murray Stokely <murray@FreeBSD.org> To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: doc/share/sgml freebsd.dsl Message-ID: <200106240246.f5O2kf128687@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
murray 2001/06/23 19:46:41 PDT
Modified files:
share/sgml freebsd.dsl
Log:
Image support has been mangled since the move to docbook.css. This
adds a new mediaobject handler to simplify the output HTML so that
images no longer overlap the text and other nearby images.
The output HTML used to look like this :
<div class="MEDIAOBJECT">
<p><img src="fig2.png"></p>
</div>
The problem was that the image would be displayed on top of nearby
text or image elements completely obscuring the previous contents
rather than doing proper page layout. With this change, the above now
simply looks like this :
<img src="fig2.png">
An alternative solution would be to fix docbook.css, but I think that
the problem stems from the way that different browsers implement CSS.
It is easier to just fix it here at the DSSSL level.
Revision Changes Path
1.34 +11 -1 doc/share/sgml/freebsd.dsl
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200106240246.f5O2kf128687>
