本文介绍了将修复视图设置为所有Moniter分辨率的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的,



i制作一个应用程序,其中我使用css div标签,但一个问题是在其他或大分辨率moniter显示该屏幕上的不同视图和其他一些监视器显示我的网站的其他视图。那么如何修复所有moniter分辨率的视图。请帮帮我.....



提前致谢。

Mitesh

Dear all,

i make an application in which i use the css div tag but one problem is that in other or big resolution moniter shows different view on that screen and some other moniter shows other view of my Website. so how can i fix the view for all the moniter resolution. please help me.....

Thanks in advance.
Mitesh

推荐答案


<div id ="t_div"></div>



现在我们可以按照以下步骤扩展部门的规模:


Now we can scale the size of the division as follow:

#t_div
{
-moz-transform:scale(1.5,1.5); //for Firefox
}



上面的代码会将除法的大小增加x1.5。同样,我们可以缩放< html>的高度宽度标签。



我已经展示了使用jQuery动态应用扩展的解决方案,根据用户的解决方案:。


这篇关于将修复视图设置为所有Moniter分辨率的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 06:23