gpt4 book ai didi

twitter-bootstrap-3 - 在 Bootstrap 的列宽中使用小数

转载 作者:行者123 更新时间:2023-12-04 08:10:55 27 4
gpt4 key购买 nike

我不知道如何制作这样的引导列:

col-md-4.5 | col-md-7.5

最佳答案

您可以使用媒体查询

像这样你可以在屏幕尺寸改变时使用媒体查询

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) {
.your-class1{
width:37.5%;
}
.your-class2{
width:62.5%;
}
}


/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }

http://getbootstrap.com/css/

关于twitter-bootstrap-3 - 在 Bootstrap 的列宽中使用小数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35645451/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com