header {
background: #5d5e62;
color: #ffffff;
font-size: 110%;
height: 7vh;
width: 100%;
opacity: 0.7;
position: fixed;
overflow: auto;
}
header h1 {
margin-left: 5%;
padding: 0.5% 0;
letter-spacing: -2px;
display: inline;
}
header nav {
display: inline;
overflow: auto;
}
header nav ul {
display: inline;
margin-left: 55%;
}
header nav ul li{
list-style-type: none;
color: #ffffff;
padding: 0 0.3%;
display: inline;
}
header nav ul li a {
text-decoration: none;
color: #ffffff;
font-weight: bold;
font-size: 200%;
}
答案 0 :(得分:0)
它不会起作用,因为一个页面只能有一个自动引导ng-app
,当它有一个值时,必须有一个相同名称的匹配角度模块
答案 1 :(得分:0)
你设置了一个名为Hullo的角度模块吗?并将该模块js包含在ur Html中。基本上ng-app是一个指令,通常放在页面的根元素附近 - 例如在或标签上。
angular.module('hullo',[])