属性(对齐)已过时。在HTML5文档中不鼓励使用它

时间:2016-11-08 06:03:29

标签: jquery html css html5 jsp-tags

使用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()
}

3 个答案:

答案 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)

我认为您应centertable与以下

对齐
table
{ 
    margin-left: auto;
    margin-right: auto;
}