使用align属性时出现以下错误。 如何使用适当的HTML5兼容语法解决此错误?
func changeTextLabel() {
print("changeTextLabel called")
if self.scoreLabel != nil {
self.scoreLabel.text = "yay"
}
}
func projectileDidCollideWithMonster(projectile: SKSpriteNode, monster: SKSpriteNode) {
print("Hit")
let game = STORYBOARD.instantiateViewControllerWithIdentifier("STORYBOARD_IDENTIFIER") as! GameViewController
game.changeTextLabel()
projectile.removeFromParent()
monster.removeFromParent()
}
答案 0 :(得分:0)
在HTML5中不推荐使用align属性,您可以通过这种方式使用它,它将起作用,
$scope.$on('$ionicView.enter',function(){
$scope.callingFunctionName();
});
答案 1 :(得分:0)
使用class而不是inline css。
<style>
.p {
align-self:center
}
</style>
<table class="p">
</table>
答案 2 :(得分:0)
我认为您应center
将table
与以下
table
{
margin-left: auto;
margin-right: auto;
}