我需要将图像对齐到DIV中的Center,但我无法添加新类。有可能这样做吗?我试过但直到现在都没有任何线索。
<div class="thumbnail visible-phone">
<a href="/#"><img src="some.jpg"></a>
</div>
一些线索?
最诚挚的问候,
答案 0 :(得分:3)
.thumbnail {
text-align: center;
}
这将使div中的所有文本居中。
如果你想让图像居中并让其他所有东西保持对齐,
.thumbnail img {
display: block;
margin: auto;
}
答案 1 :(得分:0)
或只是添加快速内联样式
<div class="thumbnail visible-phone">
<a href="/#"><img src="some.jpg" style="text-align: center"></a>