2

私は joomla で Twitter のブート ストラップを使用しています。ちょっとした問題が発生しました。タブレットの隙間...

どうすればこれを解決できますか? JSFIDDLE

HTML は次のとおりです。

<div class="row-fluid">
<!--LEFT-->
    <div class="span3 pull-left left_bar visible-desktop">
         It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
    </div>
<!--LEFT-->

<!--CONTENT-->
    <div class="span6 content pull-left">
        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 unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
     </div>
<!--CONTENT-->    

<!--RIGHT-->
    <div class="span3 pull-right right_bar hidden-phone">
        t is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.
    </div>
<!--RIGHT-->
</div>

どんな助けでも大歓迎です。

4

1 に答える 1

0

問題は class="visible-desktop" が原因です。このクラスを使用すると、左側のバーはデスクトップでは常に表示され、タブレットとモバイルでは非表示になります。

以下のようなメディア クエリを使用して列を配置し、列の間にある空のスペースを解決します。

@media (min-width: 768px) and (max-width: 979px) {
    .row-fluid .right_bar {
     width: 44.928%;

  }
}

これはjsfiddleのデモ列の再配置です

于 2013-03-08T08:57:13.390 に答える