• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






大马德

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5 6 7 下一页

2014年1月14日

属性透明度
摘要: opacity 除IE外的浏览器支持;filter:alpha IE7以上的支持 阅读全文
posted @ 2014-01-14 11:29 大马德 阅读(142) 评论(0) 推荐(0)
 
ul的列表符号在IE6下显示不全
摘要: ul默认的list-style-position: outside;在IE6下会显示不全,改为list-style-position: outside; 阅读全文
posted @ 2014-01-14 11:28 大马德 阅读(155) 评论(0) 推荐(0)
 
table的属性border-collapse 设置边框是否合并
摘要: border-collapse值separate默认值。边框会被分开。不会忽略 border-spacing 和 empty-cells 属性。collapse如果可能,边框会合并为一个单一的边框。会忽略 border-spacing 和 empty-cells 属性。inherit 规定应该从父元素继承 border-collapse 属性的值 阅读全文
posted @ 2014-01-14 11:27 大马德 阅读(601) 评论(0) 推荐(0)
 
使用了position:absolute的标签在IE6错误
摘要: 原因一:绝对定位的元素没有相对父元素定位 在父元素里加 zoom:1;原因二:绝对定位的元素A相邻着浮动的块B,A块消失, 解决:它们之间加个块隔开 或 设置B块的width(由于B块的长度挡住了A块) 阅读全文
posted @ 2014-01-14 11:25 大马德 阅读(155) 评论(0) 推荐(0)
 
<p>内的<a>截取字符串,会将<a>与<p>的其他内容撑开(IE6、IE7)
摘要: 方法:给p加个背景,如p{ background: white;} 阅读全文
posted @ 2014-01-14 11:13 大马德 阅读(131) 评论(0) 推荐(0)
 
空白块多出几像素(IE6)
摘要: 解决方法:font-size:0px;line-height:0px;overflow:hidden; 阅读全文
posted @ 2014-01-14 11:11 大马德 阅读(153) 评论(0) 推荐(0)
 
padding-bottom在IE6下失效的原因
摘要: CSS:a{ float:right; }li{ padding-bottom; overflow:hidden}因为 li 使用了 overflow(清除浮动),padding-bottom失效解决办法有:一、将overflow去掉,使用float。二、.clearfix{ *zoom: 1; &:before, &:after{ display: table; content: ""; line-height: 0; } &:after{ clear: both; }}将overflow换成.clearfix来清除浮动。 阅读全文
posted @ 2014-01-14 11:09 大马德 阅读(488) 评论(0) 推荐(0)
 
padding双倍bug(IE6)
摘要: IE6下有个BUG只要在有padding-top的元素内 有 那就会出现双倍PADDING的 BUGCSS.clear {clear: both;}解决办法需要在.clear的CSS里加overflow:hidden;height:0;.clear {clear: both;overflow:hidden;height:0;} 阅读全文
posted @ 2014-01-14 11:04 大马德 阅读(243) 评论(0) 推荐(0)
 
border-bottom在IE6失效的解决办法
摘要: 添加 display:inline-block 阅读全文
posted @ 2014-01-14 11:03 大马德 阅读(120) 评论(0) 推荐(0)
 
margin-bottom在IE6、IE7失效的原因
摘要: float块的后面没有其他块,则margin-bottom失效 阅读全文
posted @ 2014-01-14 11:01 大马德 阅读(109) 评论(0) 推荐(0)
 
上一页 1 2 3 4 5 6 7 下一页