简体   繁体   中英

Bootstrap tooltip line break in title

I'm using the html code as follows to show the bootstrap tooltip.

<div class="col-12 col-sm-3 offset-sm-1 align-self-center"> <a href="#forb" type="button" class="btn btn-warning btn-sm btn-block" data-toggle="tooltip" data-html="true" title="or call us at <br><strong>+852 12345678</strong>" data-placement="bottom" >Reserve Table</a>  </div>

And i initialized the tooltip as:

<script type="text/javascript">
$(document).ready(function(){
    $("[data-toggle="tooltip"]").tooltip();
});</script>

All works fine but the problem is the content available in title not displayed with the spaces....It removes all the new lines and show it in the single line....How can i overcome this? Also i want it in black color but it displays it in white color

Please use the single quote for your tooltip initialization. I have tested with Bootstrap 4.5.0 and it is working fine.

$('[data-toggle="tooltip"]').tooltip();

 $(document).ready(function() { $('[data-toggle="tooltip"]').tooltip(); });
 <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> <div class="col-12 col-sm-3 offset-sm-1 align-self-center"> <a href="#forb" type="button" class="btn btn-warning btn-sm btn-block" data-toggle="tooltip" data-html="true" title="or call us at <br><strong>+852 12345678</strong>" data-placement="bottom">Reserve Table</a> </div> And i initialized the tooltip as:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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