bootstrap 4中工具提示中的文本是居中对齐的
你怎么左对齐呢?
你如何证明这一点?
寻找CSS方法。
margin-top:20px; /*to have the space above the image*/
margin-bottom:20px; /*to have the space under the image*/
答案 0 :(得分:1)
使用data-html
attibute自定义文字。使用text-left
或text-justify
对齐...
https://www.bootply.com/TRrXmm3ROD
<button type="button" class="btn btn-secondary"
data-toggle="tooltip"
data-html="true"
data-placement="top" title="<div class='text-justify'>tooltip text here</div>">
Tooltip
</button>