3-14这个怎么上去啊


这个应该怎么加代码,加浮动的话布局就乱了。。求大神指导


这个应该怎么加代码,加浮动的话布局就乱了。。求大神指导
2016-10-24
<style type="text/css">
*{
margin: 0;
padding: 0;
text-decoration: none;
}
.topList{
width: 300px;
height: 180px;
border: 1px solid #e8e8e8;
margin: 100px auto;
}
ul li{
list-style: none;
padding: 6px;
font-size: 12px;
font-family: "微软雅黑"
}
em{
width: 20px;
height: 16px;
text-align: center;/* 水平居中 */
font-style: normal;/* 去除斜体*/
color: #333;
background: url('http://img1.sycdn.imooc.com//53cf0fa20001d3dc00200032.jpg') 0px 16px;
display: block;
/* 内联元素改为块级元素 ,设置的高度宽度才有效果*/
float: left;
}
.top em{
background: url('http://img1.sycdn.imooc.com//53cf0fa20001d3dc00200032.jpg') 16px 0px;
}
a:link,a:visited{
color: #000;
}
a:hover,a:active{
color: #f00;
}
</style>我的代码跟你的基本一致,但是加了浮动。参考一下。。。
举报