css 父标签宽度自适应内容(兼容ie)

此样式兼容ie

.class父 {

height: 30px;

width: -moz-fit-content;

width: -webkit-fit-content;

width: fit-content;

overflow: hidden;

margin:0 auto;

}

.class子 {

width: auto;

overflow: hidden;

display:inline-block;

*display:inline;

*zoom:1;

}

 

不兼容ie的写法可以是:

.class父 {

height: 30px;

width: -moz-fit-content;

width: -webkit-fit-content;

width: fit-content;  //这个不兼容ie

margin:0 auto;

}

你可能感兴趣的:(css)