css
文章平均质量分 56
iteye_4120
这个作者很懒,什么都没留下…
展开
-
button在ie中两边空格的bug
当我们在ie当中创建一个button/submit button的时候,button的宽度比firefox大。解决方法如下文: http://www.planabc.net/2008/11/12/the_stretched_buttons_bug/原创 2008-12-26 17:14:33 · 123 阅读 · 0 评论 -
float 布局容器高度出错
当div容器本身没有float,而内部元素都float的时候,外围div就会丢失高度。这是由于容器无法计算内部的高度所致。 常用的解决方法是在内部元素末尾增加:<div style="clear:both;"></div>, 参考 http://www.div-css.net/div_css/topic/index.asp?id=7614 http:...原创 2009-10-22 15:29:46 · 119 阅读 · 0 评论 -
xhtml1.0和html4.0的区别
xhtml1.0是比较新的DTD,兼容性好,应该设置此DTD。 在测试中,css设置margin:0 auto;可以让元素居中;但是ie6在html4.0的情况下居左,采用xhtml会显示正常。 此外,注释中包含 -- 会造成FF xhtml解析错误,html4.0没有问题。 标准差异可参考如下资料: http://www.div-css.net/div_css/news/...2009-10-22 15:36:56 · 173 阅读 · 0 评论 -
学习笔记:css selector
css can be composed by: selector { property: value; } 1. type selector h1 {color: #36c;} 2. universal selector * {color: #365;} 3. decendent selector ul em {text-transform: uppercase; } 4....原创 2008-12-02 09:51:54 · 100 阅读 · 0 评论 -
The 3 ways that HTML elements can be displayed
All HTML elements are naturally displayed in one of the following ways: Block Takes up the full width available, with a new line before and after (display:block; ) Inline Takes up only as much w...原创 2009-09-08 10:22:14 · 93 阅读 · 0 评论