> "<iframe src="./links" frameborder="0" width="575em" height="900em"></ > iframe>"
The width and height parameters for <iframe> do not support CSS units (e.g., "em", "px", etc.) These values must be specified as plain numbers and specify *pixels* only. Thus: <iframe src="./links" frameborder="0" width="575" height="900"></ iframe> Note: you *can* use CSS measurements for the iframe, but only with the style="..." syntax: Examples: <iframe src="./links" frameborder="0" style="width:575px;height: 900px"></iframe> <iframe src="./links" frameborder="0" style="width:50em;height:90em"></ iframe> <iframe src="./links" frameborder="0" style="width:6in;height:4in"></ iframe> -e -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

