如何将离体3中的化身居中?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将离体3中的化身居中?相关的知识,希望对你有一定的参考价值。
答案
我相信有一个CSS Utility attribute,你可以使用称为text-center
。将其应用于包裹图像的div。 div上的text-center
会解析为CSS
div {text-align:center!important;如果您的标记中有很多,请使用类或ID对其进行样式设置。
您可能还想对图像应用类似的东西来设置它的样式..
#imgwrap {
min-width:200px;
min-height:150px;
background-color:blue;
text-align: center!important;
img {
border:0;
max-width:140px;
border-radius:50%;
}
}
<div class"split-pane">
<div id="imgwrap">
<img src="http://via.placeholder.com/150x150">
</div>
</div>
以上是关于如何将离体3中的化身居中?的主要内容,如果未能解决你的问题,请参考以下文章
是否可以使用 AndroidX 导航将片段中的操作栏标题居中?