Bootstrap popover hides line breaks

后端 未结 6 1008
野趣味
野趣味 2020-12-24 10:44

I am using the html code as follows to show the bootstrap popover



        
6条回答
  •  北海茫月
    2020-12-24 11:20

    We managed to use the styling of white-space: pre-wrap except we found that added extra whitespace to the whole pop-over. Instead we added this styling to the popover-content.

    .popover-content {
        white-space: pre-wrap;
    }
    

提交回复
热议问题