如何在 html 文档中加入“包含”


How to join 'include' in a html-document

我正在尝试将页脚文档连接到索引文件。但它不起作用,我怀疑我的 css 文件有问题。

html {background: url("bakgrund.gif");} 
/*https://pixabay.com/ Gratis bilder Creative Commons CC0*/
html {  overflow-y: scroll;}
body  {
    background: white;
	border: 1px solid #0000ff;
    font-family: calibri, arial, sans-serif;
	width: 750px;
	margin: 25px auto;
	padding: 0;
}
header {
	height: 175px;
	background-color: #edffff;
	margin-top: -16px;
	padding: 0;
}	
nav	{
	height: 35px;
	background-color: #edffff;
	padding-left: 10px;
}
section	{
	width: 550px;
	float: left;
	min-height: 400px;
}
article	{
	width: 550px;
	float: left;
	background-color: yellow;
}
aside	{
	width: 200px;
	float: right;
	background-color: lightgrey;
}
footer	{
	clear: both;
	position: relative;
	height: 55px;
	padding: 5px ;
	text-align: center;
	background-color: magenta;
}	
address	{
	font-size: 12px;
	font-style: normal;
}	
/* Menykataloger */
ul {
margin: 0;
padding: 0;
}
#meny li {
display: inline;
padding: 5px 1px;
}
#meny li a {
margin: 0 5px 0 5px;
padding: 5px 15px;
text-align: center;
font-family: arial;
font-size: 13px;
font-weight: bold;
color: black;
border: 1px solid black;
border-radius: 5px;
background: yellow;
}
#meny li a:hover {
background: #CCEBFF;
color: black;
}
#meny a:link, #meny a:visited {
color: black; 
text-decoration: none;
}
#meny a:active {
color: white; 
}
#meny a#current {
background: white;
}
<!DOCTYPE html>
<html lang="en-US">
	<head>
		<title>Test</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
		<link rel="stylesheet" href="stil.css" type="text/css">
	</head>
<body>
<nav>
<ul id="meny">
<li><a href="index.html" id="current">Hem</a></li>
<li><a href="#">AAA</a></li>
<li><a href="#">BBB</a></li>
<li><a href="#">CCC</a></li>
</ul>
</nav>
<section>
<h2>Huvudrubrik</h2>
<p>Huvudinnehåll</p>
	<article>
	<h2>Rubrik 1</h2>
	<p>	Innehåll 1 med rubriker</p>
	</article>
	<article>
	<h2>Rubrik 2</h2>
	<p>	Innehåll 2 med rubriker
	</p>
	</article>
</section>		
	
<aside>
Nyhetsbrev H-spalt
</aside>
<?php include("fot.php"); ?>

结果对边界的解释是错误的。它只是包围头部而不是整个区域。

我明白你的问题你为什么不用<开始你的文件?PHP>"<?PHP include("fot.php");" ?> 在第二个文件的末尾,如果你能看到的话。并使用扩展名保存主 HTML 文件.php相信我,即使您将文件保存在.php中,您的 HTML 代码也不会发生任何事情,所有 HTML 内容也会正常运行

第二件事是你可以用两种方式包含即包括"文件名";

需要"文件名"; 你最好包含在文件的开头谁会知道该包含的文件是否可以从一开始就使用为止

谢谢你!

我不明白你想做什么,但你的问题是由于section标签float: left。浮点有很多替代品,如flexgrid,所以不要喜欢浮点。它会导致许多问题。此处列出了您的问题。

你的 php 没有问题。