我正在尝试像水平线一样显示 3 个 div。
像这样:
这是我的 HTML:
<div class="notactive"></div>
<div class="notactive"></div>
<div class="notactive"></div>
到目前为止,这是我的 CSS:
.notactive {
height: 10px;
width: 90px;
background: #fff;
position: absolute;
//left: 200px;
bottom: 30px;
cursor: pointer;
float: left;
display: block-inline;
}
更新 :
.notactive {
height: 10px;
width: 90px;
background: #fff;
position: absolute;
//left: 200px;
bottom: 30px;
cursor: pointer;
float: left;
display: inline-block;
}
但我无法让它工作。希望有人能帮助我。
谢谢你。