html - How to Center Align the iframe -
i want center align iframe, coming left aligned, here code (below piece of code run on big displays, height, width unknown)
<head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>cast - main page</title> <style> body { height:100%; width:100%; padding:0px; margin:0px; overflow-y:hidden; overflow-x:hidden; } .iframe { width:100%; height:100%; padding:0px; } </style> </head> <body> <iframe src="imagegallery.html" class="iframe" id="mainframe"></iframe> </body> </html>
html css3 iframe
No comments:
Post a Comment