我有一個標籤和div中的圖像,充當移動應用中的導航欄。我需要將文本置於中心位置,並且圖像位於右側。我無法設法找到正確的組合。代碼在這裏:對齊圖像和div中的標籤
<div data-role="header">
<div class="centered">
<img src="../images/culogo50x40.png" alt="logo" height="25px" class="c1">
<h3>Login</h3>
</div>
</div>
在課堂爲中心,我有:
.centered {
width: 100%;
height: auto;
position: fixed;
top: 20%;
background-color: red;
text-align:center;
-webkit-backface-visibility: hidden;
}
,並在課堂上C1,我有:
img.c1 {
float: right;
display: inline;
}
A [小提琴](http://jsfiddle.net/)可能會讚賞。 – Benjamin 2014-10-08 08:21:22
如上所示,小提琴將有所幫助,你是否支持IE8? – 2014-10-08 08:22:42
那麼問題是什麼http://jsfiddle.net/fqqzab2o/? – dfsq 2014-10-08 08:22:44