我已经制作了一个代码来定制离子标题。
HTML
<div class="styTitle">
<ion-view title="Welcome to my App">
<ion-view>
<div>
CSS
.styTitle ion-view title {
font-size: 160%;
text-align: center;
color: white;
font-family: verdana;
margin-top: 11px;
}
在模拟器上渲染时,标题上不会应用任何可见的更改。 可能有什么不对? 感谢
答案 0 :(得分:1)
这是定制离子标题的标准方法,
<强> HTML 强>
<ion-view>
<ion-nav-title>
<span class="
styTitle">Welcome to my App</span>
</ion-nav-title>
</ion-view>
<强> CSS 强>
.styTitle {
font-size: 160%;
text-align: center;
color: white;
font-family: verdana;
margin-top: 11px;
}
答案 1 :(得分:0)
首先,你的css选择器是错误的(.styTitle ion-view)
无论如何选择器没有得到你的头衔,你应该尝试:
ion-header-bar .title