在设置标题的时候为什么span标签之间会有缝隙
<div class="main">
<div class="title">
<span class="active">首页</span>
<span>点击查看</span>
<span>会自动的</span>
<span>我的网站</span>
</div>
<div class="banner">
css样式
.mian{
width: 1200px;
height: 500px;
margin:30px auto;
overflow: hidden;
position: relative;
}
.title{
width: 1200px;
height: 40px;
background: pink;
/* position: absolute;*/
}
.title span{
display: inline-block;
width: 300px;
height: 40px;
background: #FFF;
text-align: center;
line-height: 40px;
}
.banner{
width: 1200px;
height: 460px;
overflow: hidden;
position: relative;
}
正在回答
display: inline-block是这样的,可以在外面的div加一个font-size为0去掉这个间隙
- 参与学习 人
- 提交作业 11218 份
- 解答问题 36713 个
从一个不会编程的小白到一个老司机是需要过程的,首先得入门,学习基础知识,然后才能进阶,最后再到精通,本专题是你走进前端世界的不二选择!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星