当前位置:Gxlcms > html代码 > IE6下margin-bottom设置负数被隐藏的问题_html/css_WEB-ITnose

IE6下margin-bottom设置负数被隐藏的问题_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:7人阅读

想这几一个选项卡,想要的效果如下

可是在IE6中当前选项卡的底边框不会盖住父级元素的底边框,网上说父级元素要出发haslaytout,试了都不行,最后在选项卡元素中同时设置 margin-bottom:-1px; position:relative; 这样才解决问题。

这里要注意的是:选项卡元素的高度必须必父级元素高度大1px。

我的代码如下:

  • ?????? ???????
  • ????????????

  

ul.tabs{display:block; padding:0 10px 0 0; margin:25px 0 0 0; height:35px; border-bottom:solid 1px #ccc; line-height:35px;}ul.tabs li{display:block; float:right; padding:0 10px; margin:0; list-style:none;}ul.tabs li.cur{ border:solid 1px #ccc; border-bottom-color:#fff; background-color:#fff; height:34px; margin-bottom:-1px; position:relative;}

  

人气教程排行