我尝试编写一个悬停时出现的简单弹出框,到目前为止非常简单。 问题是,我想写的标题不是英文,实际上我想用希伯来语写标题。众所周知,语言的方向是rtl而不是ltr。我的问题是我无法改变text属性的方向,已经尝试使用class = pull-right。
这是代码:
$(document).ready(function(){
$('#start').popover({
html : true,
content: "as you can see the hebrew text doesnt fit the title",
title: "<div class='pull-right'>שלום</div>",
placement : "bottom",
trigger: "hover"
});
});
这是链接to test the code