选择开发人员工具栏目中,选择左起第一个鼠标指针按钮,然后将鼠标移动到“请假原因”多行文本空白处,点击鼠标左键。当前选中区域的元素和该元素的样式将分别在左右窗格显示出来。如图所示:
在左边窗格中,在选中的蓝色区域style属性值上方点击鼠标左键,此时style内容变为可编辑状态。如图所示:
选中后,右键选择“添加属性”就可以了
首先在<head>和</head>中加入以下代码:<script language=javascript>
<!--
function redirectPage(){
var url800x600=〃index-ie.html〃//定义两个页面,此处假设index-ex.html和1024-ie.html同change-ie.html在同一个目录下
var url1024x768=〃1024-ie.html〃
if ((screen.width==800) && (screen.height==600)) //在此处添加screen.width、screen.height的值可以检测更多的分辨率
window.location.href= url800x600
else if ((screen.width==1024) && (screen.height==768))
window.location.href=url1024x768
else window.location.href=url800x600
}
然后再在<body…>内加入onLoad=〃redirectPage()〃
最后,同样地,在<body>和</body>之间加入以下代码来显示网页的工作信息:
<script language=javascript>
<!--
var w=screen.width
var h=screen.height
document.write(〃系统已检测到您的分辨率为:〃)
document.write(〃<font size=3 color=red>〃)
document.write(w+〃×〃+h)
document.write(〃</font>〃)
document.write(〃正在进入页面转换,请稍候…〃)
// -->
</script>
=========================================================
建议方法,让窗口居中.在你做的网页最外面加个DIV,设置body属性,文本居中.或者把数值换成比例.
可以在HTML中用if ie条件语句,示例:
<style>body {background:red}
<!--[if IE]>
body {background:blue}
<![endif]-->
</style>
不过IE10、IE11及以上的IE浏览器已经不支持这种写法了,一般来说它们和标准的现代浏览器差不多,所以也没必要为其加载特殊的CSS样式。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)