San*_*dro 9 css vertical-alignment slick.js
我一直在努力让我的内容垂直对齐,但实际上并没有解决它.我尝试了adaptiveHeight参数,但它确实没有做我想要的.
小提琴:http://jsfiddle.net/fmo50w7n/400
这就是代码看起来像HTML:
<section class="slider">
<div style="width:500px;height:200px">slide1</div>
<div style="width:500px;height:300px;">slide2</div>
<div style="width:500px;height:100px;">slide3</div>
</section>
Run Code Online (Sandbox Code Playgroud)
CSS:
$c1: #3a8999;
$c2: #e84a69;
.slider {
width: auto;
margin: 30px 50px 50px;
}
.slick-slide {
background: $c1;
color: white;
padding: 40px 0;
font-size: 30px;
font-family: "Arial", "Helvetica";
text-align: center;
}
.slick-prev:before,
.slick-next:before {
color: black;
}
.slick-dots {
bottom: -30px;
}
.slick-slide:nth-child(odd) {
background: $c2;
}
Run Code Online (Sandbox Code Playgroud)
JS:
$(".slider").slick({
autoplay: true,
dots: true,
variableWidth:true,
responsive: [{
breakpoint: 500,
settings: {
dots: false,
arrows: false,
infinite: false,
slidesToShow: 2,
slidesToScroll: 2
}
}]
});
Run Code Online (Sandbox Code Playgroud)
Sim*_*mon 20
这个解决方案对我有用:
.slick-track {
display: flex;
}
.slick-track .slick-slide {
display: flex;
height: auto;
align-items: center;
justify-content: center;
}
Run Code Online (Sandbox Code Playgroud)
见这里的例子:
https://codepen.io/leggomuhgreggo/pen/mEmzGN
小智 1
我认为,您需要将文本、内容放在段落或标题中,这使您可以仅与特定内容而不是整个 div 进行通信。
然后在你的 CSS 中执行以下操作:
p {
margin: auto;
position: absolute;
top: 50%; left: 50%;
-webkit-transform: translate(-50%,-50%);
-ms-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}
Run Code Online (Sandbox Code Playgroud)
您可能还必须给出宽度。
其作用是更改段落生成位置的原点,而不是从左上角,而是使用 Transform: Translation 从元素的中心生成。然后使用绝对定位以及顶部和左侧百分比为 50% 将其与父元素的中间对齐。
由于我还在自学,所以我会尽力帮助你,祝你好运。:)
来源: https: //css-tricks.com/centering-percentage-widthheight-elements/