Bug in external stylesheet link
Posted: Tue Oct 04, 2005 2:23 pm
Hi,
Small xhtml releated bugreport:
when I export to xhtml with an external css stylesheet, the link tag isn't property closed.
Line 2758 in CRVData.pas:
Should read:
Another issue might be that the resulting xhtml file still holds the following inline style:
which i would expect to be saved into the external css file too.
Small xhtml releated bugreport:
when I export to xhtml with an external css stylesheet, the link tag isn't property closed.
Line 2758 in CRVData.pas:
Code: Select all
RVWriteLn(Stream, '<link type="text/css" href="'+s+'" rel="stylesheet">');
Code: Select all
RVWriteLn(Stream, '<link type="text/css" href="'+s+'" rel="stylesheet" />');
Code: Select all
<style type="text/css">
body {
margin: 5px 5px 5px 5px;
background-color: #ffffff;
}
</style>