Ionic nav-bar: Title is not centered on Android Device

后端 未结 9 1026
别跟我提以往
别跟我提以往 2021-02-01 17:20

Im very new to Ionic but i already like it. I wanted to use the nav-barso i implemented the following index.html:




        
9条回答
  •  闹比i
    闹比i (楼主)
    2021-02-01 17:58

    I think that this is a better solution for images. Add it to app.scss

    .back-button {
        z-index: 100;
    }
    ion-title {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      text-align: center;
    }
    

提交回复
热议问题