我正试图将图像置于卡片中间。
我尝试使用传统HTML标签等其他样式来居中,但到目前为止还没有运气。
<article class="photo">
<img src="https://mirror-api-playground.appspot.com/links/filoli-spring-fling.jpg" style=" width:50%;
height:50%;
background:url(logo.png) center center no-repeat;">
<div class="overlay-gradient-tall-dark"></div>
<section>
<p class="text-auto-size">Spring Fling Fundraiser at Filoli</p>
</section>
</article>
答案 0 :(得分:4)
这应该适合你:
<article class="photo">
<div style="width:100%; text-align:center">
<img src="https://mirror-api-playground.appspot.com/links/filoli-spring-fling.jpg" style="width:50%; height:50%;">
</div>
<div class="overlay-gradient-tall-dark"/>
<section>
<p class="text-auto-size">Spring Fling Fundraiser at Filoli</p>
</section>
</article>
输出:
答案 1 :(得分:0)
您可以通过将text-align
属性提供给父元素来实现。的 Live jsFiddle 强>
<article class="photo" style='text-align:center;'>