这是我的标题代码。
<div data-role="header" class="header">
www.google.com
</div><!-- /header -->
当我尝试添加链接时,它会忽略class property of div
并带来一个棕色标题,而不是我div.header css class
中指定的图像。
<div data-role="header" class="header">
<a href="http://www.google.com">www.google.com</a>
</div><!-- /header -->
下面是CSS类。
div.header{
background: url('../images/green-bg.png');
margin-top:auto;
height:auto;
text-align:center;
width:auto;
}
答案 0 :(得分:2)
要添加按钮,您只需添加左按钮的标记,然后添加h
标记,然后添加第二个按钮的标记,JQM should automatically将它们放置在右侧和左侧。为防止JQM增强您的链接并弄乱您的风格,您可以将data-role="none" attribute
添加到其父h element
。
例如
<div data-role="page">
<div data-role="header" class="header">
<a href="#" data-icon="back" data-role="button" >Button 1</a>
<h1><a href="http//www.google.com" rel="external" data-role="none">Google.com</a></h1>
<a href="#" data-icon="gear" data-role="button">Button 2</a>
</div>
<div data-role="content">
<p>Test</p>
</div>
</div>
答案 1 :(得分:0)
在jquery mobile .css文件中编写所需的类。
如果它不是缩小版本,我们可以肯定地编辑它。
您可以将自定义类添加到其中,以便主题不会影响颜色方案和样式。
你也可以给'ui-btn-left'&amp; 'ui-btn-right'类到超链接。