2010-8-12 9:26:59 阅读187 评论0 122010/08 Aug12
2010-6-7 20:54:51 阅读81 评论0 72010/06 June7
i love my country. you people crap on it!
i love my religion and you people spit on it!
just remember something,i'm here because i want to be here!
i let myself be caught because i'm not a coward.
i chose to meet my oppressors face to face!
自杀以封口,让炸弹爆炸来拯救阿拉伯人,自杀是他的良心。
you're all so fucking selfish.
this is not about you!
this is war.
this is sacrifice.
2010-3-24 10:31:59 阅读118 评论0 242010/03 Mar24
说明:
2010-3-19 10:51:37 阅读356 评论0 192010/03 Mar19
研究了半天,主要是针对IE6,终于解决
.wxd{
background-color: #FF0000;
width: 200px;
max-height:200px;
_height:expression(this.scrollHeight > 200 ? "200px" : "auto");
overflow:hidden;
}
主要是这句
_height:expression(this.scrollHeight > 200 ? "200px" : "auto");
2009-11-10 12:54:37 阅读235 评论0 102009/11 Nov10
<style>
li{ background-color: green; height: 20px; }
li a { float: left; }
li span { float: right; }
</style>
<ul>
<li><a href="">aaa</a><span>bbb</span></li>
<li><a href="">aaa</a><span>bbb</span></li>
</ul>
当li元素设置了高度,且li内元素浮动时会触发该bug。
解决方法: