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
Css 引导行流体不工作_Css_Twitter Bootstrap_Responsive Design - Fatal编程技术网

Css 引导行流体不工作

Css 引导行流体不工作,css,twitter-bootstrap,responsive-design,Css,Twitter Bootstrap,Responsive Design,我正在使用引导主题 我想说清楚:两者都使用row流体。。。在我的例子中…html是 <div class="flexslider row-fluid" style="max-width:65%;"> <ul class="slides"> <!--<li> <img src="im

我正在使用引导主题

我想说清楚:两者都使用row流体。。。在我的例子中…html是

<div class="flexslider row-fluid" style="max-width:65%;">

                    <ul class="slides">
                        <!--<li>            
                            <img src="images/slide-1.jpg">
                        </li>
                        <li>            
                            <img src="images/slide-2.jpg">
                        </li>-->
                        <li>
                            <img src="images/slide-3.jpg">
                        </li>
                        <!--<li>
                            <img src="images/slide-4.jpg">
                        </li>
                        <li>
                            <img src="images/slide-5.jpg">
                        </li>-->
                    </ul>
                </div>
                <div class="register-box">
                    <div class="reg-title">Join and communicate for FREE!</div>
                    <div class="reg-form">
                        <input type="text" value="Username">
                        <input type="password" value="Password">
                        <input type="password" value="Confirm Password">
                        <input type="checkbox">I agree to the terms and conditions.
                    </div>
                    <div class="signup-button-area">
                        <button>Sign up for free</button></div>
                </div>

我想注册框注册部分,注册部分将在jquery滑块部分之后下降。

Bootstrap 3.0.0?还是引导程序2.3.2

row fluid仅适用于Bootstrap 2.3.2,在Bootstrap 3.0.0中,您应该使用row

如果您使用的是Bootstrap 3.0.0,请阅读更改日志

如果您使用的是Bootstrap 2.3.2,则可以尝试将行流体类div添加到

<div class="register-box">
    ....
</div>
<div class="signup-button-area">
    ....
</div>
成为

<div class="row-fluid">
    <div class="register-box">
        ....
    </div>
    <div class="signup-button-area">
        ....
    </div>
</div>

请将您的相关代码上载到,这样可以更容易地帮助您删除row fluid类,因为您似乎没有正确使用它,row仅设计用于具有span类的子级。