包括php页面的内容到另一个

时间:2013-10-22 09:32:54

标签: php html

我知道要使用什么以及如何使用。 这是我的剧本:

<html>
<body>

<div style="top:230px; right:50px">  // Style does not work
<?php include 'index.php'; ?>
</div>

<h1>Welcome to my home page.</h1>
<p>Some text.</p>

</body>
</html>

index.php包含此页面:

http://yepinol.com/wall/

我想将此内容作为指定的高度和位置放在页面上。为此,我添加了如上所述的风格。但它的高度和左右位置不会改变?

为什么呢? index.php - source code of index.php

1 个答案:

答案 0 :(得分:3)

对于top css属性,您需要添加position。它对非定位元素没有影响。所以,如:

position: relative;