我使用JS将html绑定到如下页面。
_strInnerHtml += "<em>" + value.cate_name + " | " + value.city_name + "</em>";
_strInnerHtml += "<a href='#' class='activity-item-toggle'><i class='fa'></i></a>";
_strInnerHtml += "<div class='activity-item-detail'>";
_strInnerHtml += "<em>Address 1 : " + value.dire_address_1 + "</em>";
_strInnerHtml += "<em>City : " + value.city_name + "</em>";
_strInnerHtml += "</div>";
_strInnerHtml += "</div>";
我希望增加font-size
的{{1}},但无法增加。{/ p>
这就是我想要的方式
em
答案 0 :(得分:-1)
您应该使用chrome工具检查您的页面,例如查看css元素为actvity-item-detail
提供的字体大小属性。
也许这可行,因为它更精确:
.activity-item-detail em {
font-size: 15px;
}