我有一个Bootstrap 4旋转木马,有28张照片。关于中小型设备的指标,指标没有突破线(某些指标在某处丢失)。它不会破坏换行符。
我怎样才能实现这个目标?
.carousel-indicators {
position: absolute;
right: 0;
bottom: 10px;
left: 0;
z-index: 15;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
padding-left: 0;
margin-right: 15%;
margin-left: 15%;
list-style: none;
border-radius: 0px !important;
}
在小型设备上,只有少数指示器可见。
我做错了什么?
非常感谢。
答案 0 :(得分:0)
已解决:
@media screen and (max-width: 554px) {
.carousel-indicators {
display: table !important;
line-height: 15px !important;
margin-left: 18% !important;
}
}
@media screen and (min-width: 555px) and (max-width: 767px) {
.carousel-indicators {
display: table !important;
line-height: 15px !important;
margin-left: 18% !important;
}
}