这是我的标题代码。
<div data-role="header" class="header">
www.google.com
</div><!-- /header -->
- 如何添加两个按钮,一个在我的左侧,一个在我的标题右侧。
- 如何添加指向“www.google.com”的链接。
当我尝试添加链接时,它会忽略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;
}