pulpula
05-01-2003, 05:02 PM
please tell me what's the code i have to use if i want to place my iframe where i want ion my page? THX
|
View Full Version : a Q about the iframe pulpula 05-01-2003, 05:02 PM please tell me what's the code i have to use if i want to place my iframe where i want ion my page? THX Elentari 05-01-2003, 05:35 PM You can either create a layout table and put it in a cell or you can use CSS positioning to put it anywhere. www.lissaexplains.com/tables.shtml The following is an example of code I used on one of my iframes using CSS positioning. <iframe src="iframe.html" name="iframe" width="450" style="position:absolute; left:30; top:30"></iframe> pulpula 05-01-2003, 05:38 PM thx so much, i'll try it :) |