如何在FP卡中从下到上增长文本

时间:2018-05-15 07:02:49

标签: html bootstrap-4

我在网页上使用 Bootstrap-4 卡。

我希望card-body中的文字从下到上增长。

 <div class="col-xl-3 col-sm-6 mb-3">
    <div class="card text-white color4 o-hidden h-100">
        <div class="card-body">
            <div class="mr-5"><span class="float-left" 
        style="min-width:280px;font-size:17px;">Tool</span> 
        </div>
            <p>Contents i want this text to grow from bottom 
             to top.</p>
        </div>
        <div class="card-body-icon">
            <i class="fa fa-cogs" aria-hidden="true"></i>
        </div>
    </div>
</div>  

1 个答案:

答案 0 :(得分:0)

我不确定你的意思。我想你想增长你的文字? 您可以使用:

p {
font-size: 60px;
}

甚至更好

your-div-name p {
font-size: 60px;
}
相关问题