元素在Bootstrap中不对齐 [英] Elements not aligning in Bootstrap

查看:81
本文介绍了元素在Bootstrap中不对齐的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望每个图标与其各自的标题保持一致.
但这是它的样子:

I would like for each icon to align with their respective heading.
But this is what it looks like instead:

CSS HTML :

.section-service .bx h4 {
    text-transform: uppercase;
    color: #535355;
}

.section-service .bx span {
    font-size: 250%;
    float: left;
    width: 25%;
}
.section-service .bx h4,
.section-service .bx p {
   float: right;
    width: 75%;
}

<html>        
  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
    <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/animatecss/3.5.1/animate.min.css">
    <link rel="stylesheet" type="text/css" href="resources/css/styles.css">
    <link rel="stylesheet" type="text/css" href="resources/css/responcive.css">
    <link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
    <link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
  </head>
</html>

<section id="service" class="section-service">
        <div class="container">
            <div class="row">
                <h2>our service</h2>
                <p class="long-copy">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
            </div>
            <div class="row  js--wp-2">
                <div class="col-sm-4 bx">
                    <span class="fa fa-desktop"></span>
                    <div>
                        <h4>web development</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                        </div>
                </div>
                <div class="col-sm-4 bx">
                    <span class="fa fa-paw"></span>
                    <div>
                        <h4>digital desighn</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-sm-4 bx">
                    <span class="fa fa-magic"></span>
                    <div>
                        <h4>marketing</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                    </p>
                    </div>
                </div>
                <div class="clearfix"></div>
                <div class="row">
                <div class="col-sm-4 bx">
                    <span class="fa fa-shopping-cart"></span>
                    <div>
                        <h4>e-commerce</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-sm-4 bx">
                    <span class="fa fa-mobile-phone"></span>
                    <div>
                        <h4>app development</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-sm-4 bx">
                    <span class="fa fa-rocket"></span>
                    <div>
                        <h4>s.e.o</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                </div>
            </div>
        </div>
    </section>

我试图使此部分在 中具有响应性,我将尝试修复 992px和768px媒体查询 .我无法在 < = 568px 中对其进行修复.

I tried to make this section in responsive ,I'll try and fix 992px and 768px media queries. I could not fix it in <=568px.

推荐答案

我认为您的h4元素具有margin-top.

I think your h4 elements have a margin-top.

您应在"col-sm-4"之前添加"col-xs-12"类.
像这样的东西:

You should add 'col-xs-12' class before 'col-sm-4'.
Something like :

<div class="col-xs-12 col-sm-4 bx">

也许只需删除此边距顶部即可解决问题...

.section-service .bx h4{
   margin-top:0px;
}

或添加到此现有选择器中:

.section-service .bx h4 {
    text-transform: uppercase;
    color: #535355;
    margin-top:0px;  // <-- this line
}

也许您还有其他css文件可以覆盖此页边距顶部.
因此,您只需要像这样添加!important:

Maybe you've got too an other css file who override this margin-top.
So you just have to append a !important like this :

margin-top:0px !important; 

片段:

.section-service .bx h4 {
    text-transform: uppercase;
    color: #535355;
    margin-top:0px;
}

.section-service .bx span {
    font-size: 250%;
    float: left;
    width: 25%;
}
.section-service .bx h4,
.section-service .bx p {
   float: right;
    width: 75%;
}

<html>        
  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
    <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/animatecss/3.5.1/animate.min.css">
    <link rel="stylesheet" type="text/css" href="resources/css/styles.css">
    <link rel="stylesheet" type="text/css" href="resources/css/responcive.css">
    <link href='https://fonts.googleapis.com/css?family=Lato:300,400,700' rel='stylesheet' type='text/css'>
    <link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300' rel='stylesheet' type='text/css'>
  </head>
</html>

<section id="service" class="section-service">
        <div class="container">
            <div class="row">
                <h2>our service</h2>
                <p class="long-copy">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
            </div>
            <div class="row  js--wp-2">
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-desktop"></span>
                    <div>
                        <h4>web development</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                        </div>
                </div>
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-paw"></span>
                    <div>
                        <h4>digital desighn</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-magic"></span>
                    <div>
                        <h4>marketing</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                    </p>
                    </div>
                </div>
                <div class="clearfix"></div>
                <div class="row">
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-shopping-cart"></span>
                    <div>
                        <h4>e-commerce</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-mobile-phone"></span>
                    <div>
                        <h4>app development</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                <div class="col-xs-12 col-sm-4 bx">
                    <span class="fa fa-rocket"></span>
                    <div>
                        <h4>s.e.o</h4>
                        <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s when an unknowns printer took a galley of type and scrambled
                        </p>
                    </div>
                </div>
                </div>
            </div>
        </div>
    </section>

这是一个 启动 进行实验: http://www.bootply.com/D7jGgqj9LC ,您可以单击电话图标以在智能手机视图中进行测试.

Here is a bootply to experiment : http://www.bootply.com/D7jGgqj9LC , you can click on the phone icon to test in smartphone view.

这篇关于元素在Bootstrap中不对齐的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆