2016-04-01 6 views
0

Total reemptionの値を「Total Redemption」という単語と同じ行にすることを試みていますが、合計未払いポイントの様子、私は画像を使用しています私の通貨記号と、この表示のためのコードはNaira通貨記号のお金の使用方法html

<div class="item item-body " > 
<div class="container"> 
<div class="right"> 
Total Accrued Points : {{reportData.accruedpoints}}<br/> 
<p>Total Redemption:<img src='img/naira.gif' alt="Naira" height='20' width='20' align='bottom'> {{reportData.redeemableamt | currency : ""}} 
</p> 
</div> 
<a <a href="#/app/transactionsBreakDown/{{reportData.submerchantId}}" class="button button-full button-assertive ink" >View {{reportData.submerchantId}} Details</a> 

enter image description here

+0

は 'ALIGN' = "下" を削除しますか?それ以外の場合は、チェックがブロックされます。 – Martijn

+0

私はそれでもまだ効果を取り除いた –

答えて

0

段落内のインラインで表示するために、あなたのあなたのイメージタグのCSSにdisplay: inlineを追加します。

<img src='img/naira.gif' alt="Naira" height='20' 
width='20' align='bottom' style="display:inline;"> 
関連する問題