Jump to content
  • 0

Как в HTML5 разбить страницу на фреймы с отдельной html страницей в каждом


Nightingale81
 Share

Question

Здравствуйте!

Надо на одной странице отобразить несколько страниц в разных частях в HTML5.
Если надо в "top" поместить одну страницу на всю ширину, ниже сделать 2 страницы на одном уровне. Под ними поставить страницу "footer" на всю ширину.

В общем как то так:
В index.html

<iframe src="top.html" name="top" style="border-style: none;width: 100%; height: 120px;"></iframe>
<iframe src="menu.html" name="left" style="border-style: none;width: 20%; height: 500px;"></iframe>
<iframe src="table.html" name="right" style="border-style: none;width: 79%; height: 500px;"></iframe>
<iframe src="footer.html" name="footer" style="border-style: none;width: 100%; height: 120px;"></iframe>

Но так отображается не корректно.

Помогите пожалуйста с кодом, что бы отображалось правильно.

Edited by Nightingale81
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style>
		.top {
			width: 100%;
			height: 300px;
		}
		
		.wrapper {
			width: 100%;
			display: flex;
			flex-direction: row;
		}

		.menu {
			width: 50%;
			height: 600px;
			
		}
		
		.table {
			width: 50%;
			height: 600px;
		}


		.footer {
			width: 100%;
			height: 300px;
		}

	</style>
</head>
<body>
	<div class="top">
		<iframe src="https://htmlforum.io/topic/59364-kak-v-html5-razbit-stranicu-na-freymy-s-otdelnoy-html-stranicey-v-kazhdom/" width="100%" height="300px">
	</div>
	<div class="wrapper clearfix">
		<div class="table">
			<iframe src="https://htmlforum.io/topic/59364-kak-v-html5-razbit-stranicu-na-freymy-s-otdelnoy-html-stranicey-v-kazhdom/"width="100%" height="300"></iframe>
		</div>
		<div class="menu">
			<iframe src="https://htmlforum.io/topic/59364-kak-v-html5-razbit-stranicu-na-freymy-s-otdelnoy-html-stranicey-v-kazhdom/" width="100%" height="300"></iframe>
		</div>
	</div>
	<footer class="footer">
		<iframe src="https://htmlforum.io/topic/59364-kak-v-html5-razbit-stranicu-na-freymy-s-otdelnoy-html-stranicey-v-kazhdom/" width="100%" height="300"></iframe>
	</footer>
</body>
</html>

Что то типа этого. 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy