在所有li
中,我使用float: left
作为按钮。但是其中之一没有显示!
如果我将其更改为正确浮动,则一切正常。但是向左浮动有问题。
我的CSS代码:
.btnEasyAccess {
background-color: #1887e3;
font-size: 10px;
line-height: 12px;
float: left;
padding: 4px;
margin-top: 4px;
min-width: 75px;
width: 75px !important;
}
.easy-access-list-container {
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count:3;
margin-top: 5px;
}
.box-easy-access ul {
list-style: none;
margin: 0;
}
.box-easy-access ul li span {
display: inline-block;
}
.box-easy-access li {
height: 30px;
line-height: 30px; /*vertical align*/
}
.box-easy-access li i {
margin-left: 5px;
}
.btn-submit {
-moz-user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
cursor: pointer;
display: inline-block;
font-size: 13px;
font-weight: normal;
line-height: 1.42857;
margin-bottom: 0;
padding: 9px 12px;
text-align: center;
vertical-align: middle;
white-space: nowrap;
font-family: 'D5Sans', tahoma, Arial;
}
有一件事很奇怪:如果我使用inspect元素进行更改。例如,width: 75px
,将出现。
感谢帮助。
答案 0 :(得分:0)
在您的.btn-submit上删除此行
-moz-user-select: none;
我相信您使用的是Firefox浏览器