超级无敌各种浏览器css hack
.styleName{
color
:
#FFF
;
/* FF,OP,IE8 */
[
;
color:
#0F0
;
]
/* Sa,CH */
*
color
:
#FF0
;
/* IE7 */
_color:
#F00
;
/* IE6 */
}
.styleName{
background-color
:
#332200
;
/* FF*/
}
html*
.styleName{
background-color
:
#FF00FF
;
/* Sa IE7 CH */
}
*+
html .styleName{
*
background-color
:
#0000FF
;
/* IE7 */
}
*
html .styleName{
background-color
:
#00FFFF
;
/* IE6 */
}
html*
~/**/
body .styleName{
background-color
:
#055000
;
/* IE8 */
}
@media all and(min-width:0){
.styleName{
background-color
:
#FF5500
;
/* OP */
}
}
相关文档:
CSS代码如下:
img { /*-- 专门用于限定文章DIV下的图片 --*/
max-width: 680px;
max-height: 700px;
}
*html img { /*兼容IE6*/
width: expression(this.width > 700 && this.width > this.height ? 680 : tr ......
/***************************by
garcon1986********************************/
区分
visibility:hidden
和
display:none
visibility:hidden
hides an element, but it will still take up the same space as before.
The element will be hidden, but still affect the layout.
Display: none
hides ......
前台div
Html代码
<div id="DIV1" runat="server" >
</div>
后台:
C#代码
this.DIV1.Style.Value = "display:none";
或者:
C#代码
DIV1.Attributes.CssStyle.Value = "display:none";
......
<div class="llist" >
<div class="lbar">定向营销</div>
<ul class="lbox01" style="height: auto;min-height: 100px;">
<c:forEach var="item" items="${marketInfos.results}">
<li><div style="overflow:hidden; text-overfl ......
僞类 意义
:first-child 第一个孩子元素
:first-line&nb ......