0

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

<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 - index.php的源代码

4

1 回答 1

3

对于顶部css 属性,您需要添加position. 它对非定位元素没有影响。所以这样做,比如:

position: relative;
于 2013-10-22T09:34:31.590 回答