css – 如何在离子2应用程序中居中图像

前端之家收集整理的这篇文章主要介绍了css – 如何在离子2应用程序中居中图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,我在离子2应用程序中有一些页面,里面有一个……就像这样
<ion-content padding>
  <p>Some text here....</p>
  <p>Some other text here...</p>
  <ion-img width="180" height="180" src="assets/images/goal.jpg"></ion-img>  
  <p>bottom text here...</p>
</ion-content>

我需要看到图像水平居中..我测试了一些css但没有运气..我怎么能实现这一点?

解决方法

您可以使用ionic CSS utilities通过将属性text-center应用于要水平居中的元素的父元素来对齐居中.

这是一个例子:

<ion-content text-center>
    <img src="assets/imgs/logo.png" width="128" />
</ion-content>

在你的情况下,我会包装< img>在< div>中这样它只影响图像,而不影响< p>元素.

像这样:

<ion-content padding>
  <p>Some text here....</p>
  <p>Some other text here...</p>
  <div text-center>
     <ion-img width="180" height="180" src="assets/images/goal.jpg"></ion-img>  
  </div>
  <p>bottom text here...</p>
</ion-content>
原文链接:https://www.f2er.com/css/215544.html

猜你在找的CSS相关文章