标签:style http color os io 使用 java strong ar
1
|
< li >记住密码< img src = "" align = "bottom" style = "margin-bottom:-4px" /></ li > |
1
|
< li >记住密码< img src = "static/img/xyx.jpg" align = "middle" /></ li > |
切换到IE中查看源代码就可以看到效果了。
如果View Source Editor”Editor Name项没有,可以自己新建。
1
2
3
4
|
<SCRIPT language= "javascript" > setTimeout( ‘top.moveTo(0,0)‘ ,5000); setTimeout( ‘top.resizeTo(screen.availWidth,screen.availHeight)‘ ,5000); </script> |
比如在父窗体parentForm里面 通过 window.open(“subForm.html”),那么在subform.html中 window.opener
就代表parentForm,可以通过这种方式设置父窗体的值或者调用js方法。
1
2
3
4
|
if (window.opener && !window.opener.closed) { window.opener.document.parentForm.stockBox.value = symbol; } |
Javascript刷新页面的方法:
自动刷新页面的方法:
1
2
3
4
5
6
7
|
<script language= "JavaScript" > function myrefresh() { window.location.reload(); } setTimeout( ‘myrefresh()‘ ,1000); //指定1秒刷新一次 </script> |
很多IE6(或IE7)的问题可以用设置hasLayout值的方法来解决,最简单的给元素设置hasLayout值的方法是给加上CSS 的height或width(当然,zoom也可以用,但这不是CSS的一部分)。比如设置为height:1%。如果父元素没有设置高度,那么元素的物理高度并不会改变,但是,已经具备hasLayout属性。
确保浮动元素设置了 display:inline;
在浮动元素中使用 margin-right:-3px;前端UI分享
1,内联样式 [1.0.0.0]
2,ID选择器 [0.1.0.0]
3,类,属性,伪类 选择器 [0.0.1.0]
4,元素标签,伪元素 选择器 [0.0.0.1]
设置或检索对象的缩放比例。设置或更改一个已被呈递的对象的此属性值将导致环绕对象的内容重新流动。虽然此属性不可继承,但是它会影响对象的所有子对象( children )。前端UI分享
解决方法 一:
使 li 浮动,并设置 img 为块级元素
解决方法 二:
设置 ul 的 font-size:0;
解决方法 三:
设置 img 的 vertical-align: bottom;
解决方法 四:
设置 img 的 margin-bottom: -5px;
解决方法:改变CSS属性的排列顺序: L-V-H-A
解决方法:
解决办法:清除子元素的浮动
解决办法:
解决办法:
解决办法: white-space:nowrap;(文本不换行)text-overflow:ellipsis; -o-text-overflow:ellipsis; overflow: hidden;
解决办法:行高和容器高度相等line-height=height;
解决办法:设置文本输入框vertical-align:middle;前端UI分享
解决办法:
解决办法:
解决办法:给FLASH设置透明<param name=”wmode” value=”transparent” />或者<param name=”wmode” value=”opaque” />
解决办法:使用百分比绝对定位,与外补丁负值的方法。
解决办法:
从上到下:
左上至右下:
从左至右:
从上到下:
理论上的性能差异:
border:0;把border设为“0”像素虽然在页面上看不见,但按border默认值理解,浏览器依然对border-width/border-color进行了渲染,即已经占用了内存值。border:none;把border设为“none”即没有,浏览器解析“none”时将不作出渲染动作,即不会消耗内存值。
兼容性差异:
兼容性差异只针对浏览器IE6、IE7与标签button、input而言,在win、win7、vista 的XP主题下均会出现此情况。
当border为“none”时似乎对IE6/7无效边框依然存在,当border为“0”时,感觉比“none”更有效,所有浏览器都一致把边框隐藏,如何让border:none;实现全兼容?只需要在同一选择符上添加背景属性即可
给每个需要实现等高的列应用样式:
标签:style http color os io 使用 java strong ar
原文地址:http://www.cnblogs.com/pesserger/p/3953133.html