Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/hibernate/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 引导CSS的困境_Html_Css_Twitter Bootstrap - Fatal编程技术网

Html 引导CSS的困境

Html 引导CSS的困境,html,css,twitter-bootstrap,Html,Css,Twitter Bootstrap,我目前正在制作的网站有问题。我使用的是引导,在一个特定的页面上使用基本的引导css,有些东西根本不符合要求 我的代码如下:- <section id="aboutUs"> <div class="container">   <div class="row">          <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">            <img sty

我目前正在制作的网站有问题。我使用的是引导,在一个特定的页面上使用基本的引导css,有些东西根本不符合要求

我的代码如下:-

<section id="aboutUs">
<div class="container">  
<div class="row">         
    <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">            
        <img style="width: 500px; height: 288.31775700934577px;" src="/media/1010/macbook-front.png?width=500&amp;height=288.31775700934577" alt="" rel="1255" data-id="1255" />             
        <br />          
    </div>
    <div class="col-xs-12 col-sm-12 col-md-6 col-lg-6">           
        <h3>Passion is what we stand for</h3>     
        <p>Manta Ray bonytail chub. Russian sturgeon yellow tang cichlid creek chub--Siamese fighting fish poacher--sablefish bichir? Bonnetmouth gray eel-catfish luminous hake frogfish rohu, eel tope snake eel clown loach northern squawfish Australian prowfish, wrymouth.</p>
        <br />            
        <blockquote>             
            <p>Good is the enemy of great</p>Innova Tamashi            
        </blockquote>
    </div>
</div>      
<div class="row">         
    <div class="col-lg-12">           
        <hr />         
    </div>
</div>       
<div class="row">         
    <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">        
        <h3>Who we are</h3>       
        <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
    </div>       
    <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
        <h3>What we do</h3>         
        <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
    </div>         
    <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
        <h3>Why we do it</h3>         
        <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
    </div>
</div>
</div></section>

 
         
            
             

            激情是我们所代表的 蝠鲼骨尾鲨。俄罗斯鲟鱼黄塘慈鲷——暹罗斗鱼偷猎者——剑鱼?伯内特茅斯灰鳗鲶鱼发光鳕鱼蛙鱼罗湖鳗鱼托佩蛇鳗鱼小丑泥鳅北鳞鱼澳大利亚小鱼,弗里茅斯


              善是伟大的敌人

Innova Tamashi                            
                           我们是谁 使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中

        我们所做的 使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中

          我们为什么这么做 使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中


问题是,在最后一行(其中包含“我们是谁”、“我们做什么”)中,可以看到div的所有内容都显得不一致。我不明白它为什么这么做,因为从我所知道的情况来看,它们都应该是一致的。各位有什么想法吗?

看看你链接的网站,有问题的部分有几行
字符。删除这些将解决未对齐问题。

其原因是非中断空格

当前,您的页面如下所示:

这是固定页面:

html


我们是谁
使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中

我们所做的 使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中

我们为什么这么做 使用Innova享受流畅的图形和永恒的设计。不同趋势的元素被混合到一个特殊的组合中


您的代码中充满了不间断的空格(
)。这导致一些线路被压下。是的,谢谢你的朋友。没有发现他们。该网站位于Umbraco中,源代码视图中的所见即所得编辑器没有显示任何标记……只是空白,没有在HTML lol中转换为空格。谢谢,伙计:)现在排序:)
<div class="row">
  <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
    <h3>Who we are</h3>
    <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
  </div>

  <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
    <h3>What we do</h3>
    <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
  </div>

  <div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
    <h3>Why we do it</h3>
    <p>Enjoy smooth graphics and timeless design with Innova. Elements of different trends are blended into a special mix.</p>
  </div>
</div>