HTML CSS examples for Bootstrap:Popover
Setting Container for Popover
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example of Setting Container for Bootstrap 3 Popover</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#myPopovers a").popover({ container: '.wrapper' }); <!--from ww w .java 2 s . c o m--> }); </script> <style type="text/css"> .bs-example{ margin: 150px 50px; } .a{ margin: 5px; } </style> </head> <body> <div> <div class="wrapper"> <div id="myPopovers"> <a href="#" class="btn btn-primary" data-toggle="popover" title="Popover title" data-content="Default popover">Popover</a> <a href="#" class="btn btn-success" data-toggle="popover" title="Popover title" data-content="Another popover">Another popover</a> <a href="#" class="btn btn-info" data-toggle="popover" title="Popover title" data-content="A larger popover to demonstrate the max-width of the Bootstrap popover.">Large popover</a> <a href="#" class="btn btn-warning" data-toggle="popover" title="Popover title" data-content="The last popover!">Last popover</a> </div> </div> </div> </body> </html>