English 中文(简体)
恢复四分之二以补浏览器
原标题:Resizing a div to fill the browser
  • 时间:2009-11-04 01:40:31
  •  标签:

我有一页,有多页和风格,我有一页。

我正试图有一个能够自动使我四分五裂的纽子,其中包括一个录像机、转播和捕获整个浏览器。

为了做到这一点,我正设法获得目前四分五裂的位置,然后相对地将其定位,以便它能够坐到最左上角,这样我就可以使用文件。

能够做到这一点。

我尝试了把我四分五舍五入到头四分之四的做法,然后又转播了这个闪电器。

任何想法? 是否有任何不同的做法?

Thanks,
Guy

问题回答

使用能够处理四肢解的灯塔。 他们通常把所涉地雷危险识别器复制到他们自己的观点DIV中,后者有助于找到问题,而你也不必对被掩埋的碎片做任何事情。

我发现多功能灯塔非常容易定制:

http://www.gregphoto.net/light Box/

但也有许多其他人。

Why relative? You should rather use fixed instead of relative. Then set positon to 0,0 and width and height to 100%. Simple js can do this.

点击时,仅将干.带固定,位置0。 和:

var theDiv = document.getElementById( yourDivsId );
theDiv.style.position =  fixed ;
theDiv.style.top      = 0;
theDiv.style.left     = 0; 

这应当做到:

<div style="position:absolute;top:0;left:0;width:100%;height:100%">
   some content here
</div>




相关问题
热门标签