화면 너비를 감지하고 프레임 ID로 div 너비로 설정하세요. 작은 데모의 최대 너비는 1440입니다. 코드 복사 코드는 다음과 같습니다. < 메타 http-equiv="Content-Type" content="text/html; charset=utf-8" /> /title> <br>함수 onWidthChange() 🎜>var w=$(window).width( ); <br>x=(w-1440)/2 <br>$("#frame").css("width",w); if(w<1024){ <BR>$( "#frame").css("overflow","visible") <BR>$("#webContent").css("margin-left",x) ; <BR>}else if(1024<w< 1440){ <BR>$("#frame").css("overflow","hidden") <BR>$("#webContent").css( "margin-left",x); <BR>setTimeout(onWidthChange,0) <BR>}; <BR></head> ; <br><div id="frame" style="overflow:hidden;"> <br><div id="webContent"> <br>//Content<br></div> 🎜></div> <br>< /body> <br><br> </div>