2

固定サイズのナビゲーションバーとして使用するために、Twitterブートストラップの左側のタブの幅と高さを修正する最良の方法は何ですか?質問は、以下のコードでよりよく示されています。

      <div class="tabbable tabs-left">
        <ul class="nav nav-tabs">
          <li class="nav-header">Questions</li>
          <li class=""><a data-toggle="tab" href="#lA">------ Question 1 -------</a></li>
          <li class="active"><a data-toggle="tab" href="#lB">------ Question 2 ------</a></li>
        </ul>
        <div class="tab-content">
          <div id="lA" class="tab-pane">
            <p>How do I fix the width of this section as to avoid using the --------</p>
          </div>
          <div id="lB" class="tab-pane active">
            <p>Can I fix the height as well?</p>
          </div>
        </div>
      </div>
4

1 に答える 1

2

私はBootstrapにあまり詳しくありませんが、他に誰も答えていないので、ここに行きます...

強調表示した2つの要素は両方ともIDを持っているのに、なぜ特定の幅/高さを指定できないのですか?

#1A {
    width: 300px;
}

#1B {
    height: 30px;
}

私が言っているように、私はBootstrapに精通していないので、あなたの質問を誤解しているかもしれませんが、それは私にとって簡単な解決策のようです。

于 2012-07-17T23:37:25.253 に答える