iFrame Height Auto (CSS)

后端 未结 8 1964
无人共我
无人共我 2020-12-08 09:54

I am having problems with my iframe. I really want the frame to auto adjust heights according to the content within the iframe. I really want to do this via the CSS without

8条回答
  •  心在旅途
    2020-12-08 10:07

    @SweetSpice, use position as absolute in place of relative. It will work

    #frame{
    overflow: hidden;
    width: 860px;
    height: 100%;
    position: absolute;
    }
    

提交回复
热议问题