skip to Main Content

Html – Remove scrollbar inside iframe with margin

I have html like this (index.html): <html> <head> <style> iframe { height: 200px; width: 200px; border: 0; } </style> </head> <body> <iframe src="frame.html" marginheight="0"></iframe> </body> </html> And frame.html <html> <head> <style> body, html { height: 100%; background: #f88; margin: 0;…

VIEW QUESTION

Html – Centering entire main element

I have put some content and form inside the main element. Here is the HTML: <main> <h1>My main content</h1> <form action="/action_page.php" id="form"> <input type="email" id="email" name="email" placeholder="Enter your email address"><br><br> <input type="submit" value="Submit"> </form> </main> with the following CSS: main…

VIEW QUESTION
Back To Top
Search