我想坚持使用本机引导实用程序类,但我找不到合适的解决方案。
我希望这一部分为50%的大屏幕和75%的小设备:
<div class="col-10 col-xl-8 justify-content-center align-items-center h-100">
<div class="text-white w-75 shaded-background">
<h1 class="mb-3">Boost Efficiency and Productivity: Modernize Your Legacy Apps Today!</h1>
<h2 class="mb-3">Don't let your legacy applications slow down your business.</h2>
</div>
</div>
https://codepen.io/literakl/pen/XWyjdMo
没有w-xl-50
这样的类。如果无法使用xl
选择器,我正在考虑@media screen and (min-width: 1024px)
作为一个变通方法。更好的主意?
1条答案
按热度按时间xesrikrc1#
删除
w-75
并使用col-9 col-lg-6
。col-9
声明了width: 75%
,col-lg-6
声明了width: 50%
(最小宽度:992px)