【发布时间】:2018-09-14 11:41:46
【问题描述】:
我希望我的网站在 md 大小的屏幕上具有较大的屏幕,右侧是更大的手机,左侧是文本。但是一旦屏幕尺寸小于 md,我希望文字在手机下方。
<section id="" class="pt-3 mt-3">
<div class="container">
<div class="row">
<div class="col-md-6 my-auto text-right">
<h3 class="display-3 lato_text">Description</h3>
<p class="lead">On the map, click on an OddJob to get a quick preview.</p>
<p class="lead">In the preview, you will see the title and price of the job.</p>
</div>
<div class="col-md-6">
<div class="text-center">
<img id="phone-screenshot" src="img/JobFullDesc.jpg" class="img-fluid mb-3">
</div>
</div>
</div>
</div>
</section>
我将如何更改我的 html 以使其在 md 大小的屏幕及以下屏幕上显示在手机下方。
【问题讨论】:
标签: html bootstrap-4