Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在标题中添加一行文本(但不会使默认标题高度更大)。这可能吗?
<div data-role="header" data-position="fixed"> <h1><?=$song_title;?><br/><?=$artist_name;?></h1> </div>
我得到的只是带有多行的更大标题高度,因为字体不会改变它的大小。
我该如何编辑它以使字体更小,从而可以在那里挤另一条线?但不影响其他页面的其余css?
我也遇到了这个问题。你必须像这样覆盖css。
http://jsfiddle.net/7EP7U/1/
#page2 .ui-header h1 { font-size: .7em; }