简体   繁体   English

Bootstrap Modal正在扩展到整页

[英]Bootstrap Modal is stretching to full page

my bootstrap modal is not showing correctly. 我的引导程序模式无法正确显示。 it is stretched to full page. 它被拉伸到整页。 I'm using a html page. 我正在使用html页面。 it seems that the modal isn't inline but I also think that my code is correct. 似乎该模式不是内联的,但我也认为我的代码是正确的。

<!-- MODAL SECTION -->
<div class="modal fade" id="myModal">
    <div class="model-dialog">
        <div class="model-content">

            <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
                <h4 class="modal-title" id="myModalLabel"><i class="fa fa-envelope"></i> Subscribe to our Newsletter</h4>
            </div><!-- modal header -->

            <div class="modal-body">
                <p>Simply enter your name and email! To receive our <em>Newsletter</em></p>
                <form class="form-inline" role="form">
                    <div class="form-group">
                        <label class="sr-only" for="subscribe-name">Your First Name</label>
                        <input type="text" class="form-control" id="subscribe-name" placeholder="Your first name">
                    </div><!-- form-group -->
                    <div class="form-group">
                        <label class="sr-only" for="subscribe-email">and your email</label>
                        <input type="text" class="form-control" id="subscribe-email" placeholder="and your email">
                    </div><!-- form-group -->
                    <input type="submit" class="btn btn-danger" value="Subscribe!">
                </form>

                <hr>

                <p><small>By providing your email you consent to receiving our newsletters. <br>No Spam. Just good stuff. We respect your privacy &amp; you may unsubscribe at any time.</small></p>
            </div><!-- modal body -->

        </div><!-- modal-content -->
    </div><!-- modal-dialog -->
</div><!-- modal -->
<div class="model-dialog">
        <div class="model-content">

should be : 应该 :

<div class="modal-dialog">
        <div class="modal-content">

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

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