简体   繁体   English

twitter-bootstrap中的文本对齐

[英]text alignment in twitter-bootstrap

On my website, I am putting google map to show my location. 在我的网站上,我正在放置Google地图以显示我的位置。 I figured out with google map API without any difficult. 我想通了Google Map API,没有任何困难。 My problem is that I write my phone number and address beside this google map, but it always show below google map. 我的问题是我在谷歌地图旁边写了我的电话号码和地址,但它总是显示在谷歌地图下面。 I tried couple of different bootstrap grid components, but no luck with me. 我尝试了几个不同的Bootstrap网格组件,但是没有运气。

<section id="contact">
    <div class="container">
        <div class="row">
            <div class="col-lg-12 text-center">
                <h2>Contact Us</h2>
                <hr class="star-primary">
            </div>
        </div>
        <div class="row">
            <div class="col-md-4 col-xs-6 col-sm-3">
              <div id='map'></div>
                <span class="glyphicon glyphicon-phone-alt" aria-hidden="true"></span>
                <div>123-4567-8910
                </div>
            </div>
        </div>
    </div>
</section>

Line 6 is custom CSS that shows star mark middle of hr line. 第6行是自定义CSS,显示hr行中间的星标。 Some components I tried worked, but then my contact information is right beside map without any space. 我尝试了一些组件,但是我的联系信息就在地图旁边,没有任何空间。 What can I do with this? 我该怎么办? Thank you for reading! 谢谢你的阅读!

You can style in two column 您可以在两列中设置样式

       <div class="row">
        <div class="col-md-4 col-xs-6 col-sm-3">
          <div id='map'></div>
        </div>
        <div class="col-md-4 col-xs-6 col-sm-3">
            <span class="glyphicon glyphicon-phone-alt" aria-hidden="true"></span>
            123-4567-8910
        </div>
    </div>

or you a float left (with span inside divinside the ) 或者你左边一个浮标(在divinside里面有跨度)

      <div class="row">
        <div class="col-md-4 col-xs-6 col-sm-3">
          <div id='map'></div>
            <span class="glyphicon glyphicon-phone-alt" aria-hidden="true"></span>
            <div style="float-left" > span class="glyphicon glyphicon-phone-alt" aria-hidden="true">123-4567-8910</span>
            </div>
        </div>
    </div>

Otherwise check if your page / tag are well formed (correctly nested, open/closed) 否则,请检查您的页面/标签是否格式正确(正确嵌套,打开/关闭)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM