标题文本的响应式左对齐

我正在尝试在引导卡内实现以下文本布局:

https://img1.sycdn.imooc.com/659fa4900001177e06510173.jpg

下面的代码在大屏幕上渲染得很好,但在较小的屏幕上,我希望标题移动到正文上方。事实上,它只是被塞进一条长线(无响应)。如何才能实现这一目标?我的代码如下:


超文本标记语言


<div class="card shadow hover-scale-110 mt--100" style="background-color: #F3E500;border-radius: 25px;">

                <div class="card-body p-5">

                    <div style="width: 100%;">

                        <div class="innerDiv" style="width: 15%;">

                            <h2 style="font-weight:bold;">Dear fellow Kenyans</h2>

                        </div>

                        <div class="innerDiv" style="width: 85%;">

                        <span>Power is one of the most essential utilities in these difficult times of the COVID-19 pandemic.

                            As Mobisol, we are extending a caring hand to help equip the more than 27 million Kenyans staying at home in the dark, with no or limited access to power.

                            Solar energy is easy to acquire, install and inexpensive to use with the sun shining free of charge! We are contributing by making it more affordable and convenient to purchase, transport and install the Mobisol solar power package to benefit these families.

                            Below are our discounted items categorised according to their specifications.<br/>

                        </span><br>

                            <span style="font-style:normal;font-weight:bold;">Please join us in spreading the #PowerOfLove.</span>

                        </div>

                    </div>

                </div>

            </div>

CSS


.innerDiv{

float: left;

width: 100%;

}


红颜莎娜
浏览 48回答 2
2回答

饮歌长啸

就是这个:<!DOCTYPE html><html><head>&nbsp; &nbsp; <meta charset="UTF-8">&nbsp; &nbsp; <meta name="viewport" content="width=device-width, initial-scale=1.0">&nbsp; &nbsp; <meta http-equiv="X-UA-Compatible" content="ie=edge">&nbsp; &nbsp; <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css">&nbsp; &nbsp; <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css">&nbsp; &nbsp; <link rel="stylesheet" href="style.css">&nbsp; &nbsp; <title>Title</title></head><body>&nbsp; &nbsp; <div class="container-fluid " style='background-color: #F3E500; border-radius: 50px;'>&nbsp; &nbsp; &nbsp; &nbsp; <div class="row">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <div class=" col-xs col-sm-3 col-md-3 col-lg-3 col-xl-3 ">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <h1>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <bold>Dear fellow Kenyans</bold>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </h1>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <div class=" col-xs col-sm-9 col-md-9 col-lg-9 col-xl-9">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span>Power is one of the most essential utilities in these difficult times of the COVID-19 pandemic.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; As Mobisol, we are extending a caring hand to help equip the more than 27 million Kenyans staying at home in the dark, with no or limited access to power.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Solar energy is easy to acquire, install and inexpensive to use with the sun shining free of charge! We are contributing by making it more affordable and convenient to purchase, transport and install the Mobisol solar power package to benefit these families.&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Below are our discounted items categorised according to their specifications.<br/>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </span><br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="font-style:normal;font-weight:bold;">Please join us in spreading the #PowerOfLove.</span>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </div>&nbsp; &nbsp; &nbsp; &nbsp; </div>&nbsp; &nbsp; </div>&nbsp; &nbsp; <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script>&nbsp; &nbsp; <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>&nbsp; &nbsp; <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script></body></html>请参阅: https:&nbsp;//jsfiddle.net/sugandhnikhil/4y3fm1Lh/1/&nbsp;尝试调整窗口大小以查看效果

波斯汪

<style>.card-body-content {&nbsp; display:flex;}.innerDiv.title{&nbsp; flex:15;}.innerDiv.detail{&nbsp; flex:75;}@media screen and (max-device-width: 500px) {&nbsp; .card-body-content {&nbsp; &nbsp; flex-direction: column;&nbsp; }&nbsp; .innerDiv.title{&nbsp; &nbsp; flex:1;&nbsp; }&nbsp; .innerDiv.detail{&nbsp; &nbsp; flex:1;&nbsp; }}</style><div class="card shadow hover-scale-110 mt--100" style="background-color: #F3E500;border-radius: 25px;">&nbsp; <div class="card-body p-5">&nbsp; &nbsp; <div class="card-body-content" style="width: 100%;">&nbsp; &nbsp; &nbsp; <div class="innerDiv title">&nbsp; &nbsp; &nbsp; &nbsp; <h2 style="font-weight:bold;">Dear fellow Kenyans</h2>&nbsp; &nbsp; &nbsp; </div>&nbsp; &nbsp; &nbsp; <div class="innerDiv detail">&nbsp; &nbsp; &nbsp; &nbsp; <span>Power is one of the most essential utilities in these difficult times of the COVID-19 pandemic. As Mobisol, we are extending a caring hand to help equip the more than 27 million Kenyans staying at home in the dark, with no or limited access to power. Solar energy is easy to acquire, install and inexpensive to use with the sun shining free of charge! We are contributing by making it more affordable and convenient to purchase, transport and install the Mobisol solar power package to benefit these families. Below are our discounted items categorised according to their specifications.</span>&nbsp; &nbsp; &nbsp; &nbsp; <br>&nbsp; &nbsp; &nbsp; &nbsp; <strong>Please join us in spreading the #PowerOfLove.</strong>&nbsp; &nbsp; &nbsp; </div>&nbsp; &nbsp; </div>&nbsp; </div></div>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5