简体   繁体   English

Bootstrap儿童元素高度100%

[英]Bootstrap children element height 100%

I want a Button, with 2 elements in it, to slide the Background. 我想要一个带有2个元素的Button来滑动背景。

But I want both elements to center vertical and get height 100% even when the other element is bigger. 但是我希望两个元素都居中垂直,即使另一个元素更大,也能获得100%的高度。

Here is the HTML 这是HTML

<button class="btn-cstm-slide">
    <div class="btn-cstm-slide-logo"><span>Test Test 14343</span></div>
    <div class="btn-cstm-slide-text">
        <span>Just a Testtest</span>
        <br/>
        <span>Let's see</span>
    </div>
</button>

And here the CSS 这里是CSS

    .btn-cstm-slide {
    height: 100%;
    padding: 0px;
    display: flex;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    background: #333C42;

    border: none;
    box-shadow: 0px 1px 1px rgba(0,0,0,.1);
}
.btn-cstm-slide-logo {
    height:100%;

    min-height:100%;
    margin: 0;
    padding: 10px;
    position: relative;
    text-decoration: none;
    background: #474f54;
    color: #fff;
}
.btn-cstm-slide-text {
    padding: 10px;
    position: relative;
    text-decoration: none;
    background: #333C42;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-cstm-slide-text * {
    position:relative;
}

.btn-cstm-slide-text:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    bottom: 0;
    left:0;
    background-color: #474f54;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.btn-cstm-slide-text:hover:before {
    width: 100%;
}

Demo 演示

FIDDLE 小提琴

Can you help me? 你能帮助我吗? :( :(

Is this what you had in mind? 这是你的想法吗?

https://jsfiddle.net/e07uc4kj/9/ https://jsfiddle.net/e07uc4kj/9/

.btn-cstm-slide {
    height: 100%;
    padding: 0px;
    display: flex;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    background: #333C42;

    border: none;
    box-shadow: 0px 1px 1px rgba(0,0,0,.1);
}
.btn-cstm-slide-logo {
    padding: 10px;
    min-width: 80px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    text-decoration: none;
    background: #474f54;
    color: #fff;
    vertical-align: middle;
}
.btn-cstm-slide-text {
    margin-left: 100px;
    padding: 10px;
    position: relative;
    text-decoration: none;
    background: #333C42;
    color: #fff;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.btn-cstm-slide-text:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    bottom: 0;
    left:0;
    background-color: #474f54;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.btn-cstm-slide-text:hover:before {
    width: 100%;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM