Nov 24, 2003 #1 atferraz Technical User Joined Aug 23, 2003 Messages 129 Location PT Hello Have an image in a iframe and need to positioning it right on the middle. Html code: <img src=”xpt.jpg” class=”img”> css code .img{position:relative;left:auto;top:auto} thanks anyone.
Hello Have an image in a iframe and need to positioning it right on the middle. Html code: <img src=”xpt.jpg” class=”img”> css code .img{position:relative;left:auto;top:auto} thanks anyone.
Nov 24, 2003 #2 newphpbie Programmer Joined Oct 17, 2003 Messages 110 Location GB Code: <img src="xpt.jpg" class="img" align="right"> You need it positioning right on the middle? You mean you want it in the center of the page?? Code: <img src="xpt.jpg" class="img" align="center"> ?? Upvote 0 Downvote
Code: <img src="xpt.jpg" class="img" align="right"> You need it positioning right on the middle? You mean you want it in the center of the page?? Code: <img src="xpt.jpg" class="img" align="center"> ??
Nov 24, 2003 Thread starter #3 atferraz Technical User Joined Aug 23, 2003 Messages 129 Location PT sorry, yes in the center of the page Upvote 0 Downvote
Nov 24, 2003 #4 cian Technical User Joined Oct 11, 2001 Messages 1,383 i'd place it in a div <div align="center"> or specify the styels for the iframe iframe.xyz {text-align:center;} something like that... <!--#sig value=''É'' url=''http://www.ssi-developer.net'' --> Upvote 0 Downvote
i'd place it in a div <div align="center"> or specify the styels for the iframe iframe.xyz {text-align:center;} something like that... <!--#sig value=''É'' url=''http://www.ssi-developer.net'' -->
Nov 24, 2003 Thread starter #5 atferraz Technical User Joined Aug 23, 2003 Messages 129 Location PT got that. thanks Upvote 0 Downvote