1

bugged

as you can see, vote button and some text got out of div. how to fix it? and how to set a value of width, when column become "adapted"? code is:

div class="container-fluid">
            <div class="row-fluid">
                <div class="span2">
                </div>

                <div class="span10">
                </div>
            </div>
</div>
4

1 回答 1

1

似乎为导致此类问题的 span2 的内部元素提供了额外的填充,删除该填充,希望一切都会正常工作!

另一种可能的解决方案是修复左栏,因为你总是想要它

尝试

position: fixed;

我相信其中一种解决方案对您有用!

于 2013-06-09T09:29:10.897 回答