Home:ALL Converter>bootstrap modal stretching to full page width?

bootstrap modal stretching to full page width?

Ask Time:2014-02-19T18:57:19         Author:Orahmax

Json Formatter

I am implementing modal and it is stretching to full page width unlike the one demonstrated on bootstrap website.

<div class="modal fade" id="contact" role="dialog">
            <div class="modal-disalog">
                <div class="modal-content">
                    <div class="modal-header">
                        <p>Contact Us</p>
                    </div>
                    <div class="modal-body">
                        <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.</p>
                    </div>
                    <div class="modal-footer">
                        <a class="btn btn-info" data-dismiss="modal">Ok</a>
                    </div>
                </div>
            </div>
        </div>

Author:Orahmax,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/21878450/bootstrap-modal-stretching-to-full-page-width
Syjin :

Only a Typo:\n\n<div class=\"modal-disalog\">\n\n\nshould be\n\n<div class=\"modal-dialog\">\n\n\nand the correct css rules should apply.",
2014-02-19T11:02:54
yy