1樓:大野瘦子
//window.onresize表示視窗觸發時間的時候執行
//兩個函式,用閉包包裹起來()()
window.onload=function(){
(window.onresize=function(){
//獲取可見寬度
var width=document.documentelement.clientwidth-180;//180為左邊的div的大小
//獲取可見高度
var height=document.documentelement.clientheight-80;//80為頭部的div的大小可自己修改
//如果有寬度就給值,
if(width>=0){
document.getelementbyid('main').style.width=width+'px';
if(height>=0){
document.getelementbyid('sidebar').style.height=height+'px';
document.getelementbyid('main').style.height=height+'px';
2樓:夢想時光網路
我測試過,完全可以用的
3樓:熊熊知
700?fdh:700)">
iframe高度自適應,700為自己設定的iframe高度最低值,高度小於700的將以700顯示,大於700將以div自身高度來顯示。iframe高度最低值可以自己修改
4樓:搞笑片兒
iframe高度自適應
5樓:德迎波
marginwidth='0' marginheight='0' frameborder='0'
6樓:諸葛亮的很
iframe的css設定為
width:100%
height:100%
如何讓div中的兩個子div在一行上顯示
給兩個子div加上display inline block就可以在一行顯示了 div 裡面怎麼讓兩個標記在一行顯示呢?求指教!兩種常用方法 左左左左左左左 右右右右右右右 一 p left p right 二 中間如果有空格 他會留空格的 上面的就不會,你要塊狀也可以換成display inline...
如何用css控制div在頁面中的位置
別吃納豆 css中的position property一共有四種 postion static postion relative position fixed position absolute 如果設定div為static postion,div的位置將不受top,right,left,butto...
關於div層居中的問題,div中如何設定文字居中
起作用的,記住一定要給這個div層設定寬度,因為div層它的預設寬度是100 當然加margin 0px auto 不起作用了。但你給這個層寫了寬度width 500px margin 0px auto 這樣才起作用呢。我這有兩中解決方法 一 確保有 檔案頭有。宣告 要不然ie6無效,ff可以 加上...