Hi: I am trying to use liner gradient effect in fo:body area as the following code. The problem is that the linear gradient efefct with two colors is not filling the entire body area within the page. Am I doing anything wrong? Any clue? Can you refer to some samples using linear gradient with multiple colors that fills up the entire page (including header, footer, left, right, body) as background? I would like to embed the svg as a instream-foreign-object and do not want to use an external svg file.
Appreciate your help. warm regards, Debasish Jana <fo:flow flow-name="xsl-region-body"> <fo:block-container position="absolute" reference-orientation="0"> <fo:block font-size="0mm"> <fo:instream-foreign-object content-width="7.7in" > <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 0 0"> <defs> <linearGradient id="grad1"> <stop offset="0%" stop-color="#F60"/> <stop offset="100%" stop-color="#FF6"/> </linearGradient> </defs> <rect x="0" y="0" width="100%" height="100%" fill="url(#grad1)" /> </svg> </fo:instream-foreign-object> </fo:block> </fo:block-container> .... </fo:flow> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
