我的Bootstrap有问题。我有一个h2
- 标题,在移动设备屏幕上显示超出范围。我不能发布一个图片示例,因为我是新手。
<body data-spy="scroll" data-target="#navbar" data-offset="0">
<header id="header" role="banner">
...
</header>
<section id="section1">
<div class="container">
<div class="box box-one">
<div class="center gap">
<h2>Sadipscing Takimata sanctus est</h2>
</div>
</div>
</div>
</section>
CSS:
.box {
padding: 50px 30px;
background: #fff;
border-bottom: 1px solid #e9e9e9;
position: relative;
}
#section1 .box-one {
border-radius: 5px 5px 0 0;
}
.gap {
margin-bottom: 40px;
}
导致这种经历的原因是什么?
此致
答案 0 :(得分:1)
<section class="container" id="section1">
<div class="row">
<div class="col-md-12">
<div class="box box-one">
<div class="center gap">
<h2>Sadipscing Takimata sanctus est</h2>
</div>
</div>
</div>
</div>
</section>
我假设你正在使用标题为全宽,如果没有,那么将col-md-12
更改为col-md-11
或者只是减少该数字进一步发挥它
<强> CSS 强>
.box {
padding: auto;
background: #fff;
border-bottom: 1px solid #e9e9e9;
position: relative;
}
#section1 .box-one {
border-radius: 5px 5px 0 0;
}
.gap {
margin-bottom: auto;
}
@media all and (mix-width: 699px)
{
.box{padding: 50px 30px;}
.gap {margin-bottom: 40px;}
}