16. td自动换行的问题
问题:
Table宽度固定,td自动换行
解决:
设置Table的table-layout:fixed,td的word-wrap:break-word
17. 子容器浮动后,父容器扩展问题
问题:
子容器都float以后,父容器没有设定高度,父容器将不会扩展
解决:
只需要添加一个clear:both的div,代码如下:
子容器a
子容器b
18. 透明png图片会带背景色
问题:
在ie6下透明的png图片会带一个背景色
解决:
background-image: url(icon_home.png);
background-repeat: no-repeat;
_filter:progid XImageTransform.Microsoft.AlphaImageLoader(src='icon_home.png');
_background-image: none;
19. list-style-position默认值的问题
问题:
ie下list-style-position默认为inside, firefox默认为outside
解决:
css中指定为outside即可解决兼容性问题 |