标签: jquery jquery-mobile
我正在尝试在标题中添加一行文本(但不会使默认标题高度更大)。这可能吗?
<div data-role="header" data-position="fixed"> <h1><?=$song_title;?><br/><?=$artist_name;?></h1> </div>
我得到的是具有多行的较大标题高度,因为字体不会改变它的大小。
如何编辑它以使字体更小,从而可以在那里挤出另一条线?但不影响其他页面的其余css吗?
答案 0 :(得分:0)
我也遇到过这个问题。你必须像这样覆盖css。
http://jsfiddle.net/7EP7U/1/
#page2 .ui-header h1 { font-size: .7em; }