我有一個我試圖匹配的設計。我需要在文本內容旁邊顯示一個.gif圖像。但我只是明白無法到達那裏,而且這讓我發瘋。在文字/鏈接內容旁邊放置圖像
簡化的測試案例在這裏: http://jsfiddle.net/QL49W/2/
最終目標是Photoshop處理設計。不知道如何把它雖然轉換成代碼:
我的HTML如下。在jsfiddle中,我使用了更多的CSS & JS。
<section id="newslettersignup">
<div class="container White_BG">
<div class="pull-left newsletter">
<h2>E-mail Deals</h2>
Sign up to receive Sales & exclusive news!<br>
We will not sell or rent your email address. <a href=" //rsatestamle.dminsite.com/privacy-policy/a/3/" style="text-decoration:underline;color:#F25C27;">Privacy Policy</a>.<br><br>
<form class="form-horizontal" method="post" action="http://www.gliq.com/cgi-bin/subunsub">
<div class="input-prepend">
<input type="hidden" name="acctname" value="amleo">
<input type="hidden" name="action" value="subscribe">
<input type="hidden" name="url" value=" //rsatestamle.dminsite.com/subscribe-successful/a/47/">
<input type="text" placeholder="Your email address" id="inputIcon" class="input-xlarge" name="email">
<input value="SUBSCRIBE" class="btn btn-orange" type="submit">
</div>
</form>
</div>
<div id="Catalog" class="pull-right catrr">
<div class="catalog">
<h2>Catalogs</h2>
<a class="various" data-fancybox-type="iframe" href="catalogrequestpopup.aspx?catalog_id=0001&name=2014 Catalog Request" title="Request a Catalog" style="text-decoration:underline;"><span style="color:#F25C27;">Request a Free Catalog</span></a> or<br>
<a href=" //rsatestamle.dminsite.com/catalogs.aspx" title="Catalogs" style="text-decoration:underline;">
<span style="color:#F25C27;">View Online Catalog</span></a>
<div class="CatalogGif">
<img src="http://cdnll.amleo.com/images/art/MG14_pro_animatedcover.gif" align="right">
</div>
</div>
</div>
</div>
</section>
好的!用跨度替換字體。 –
浮動圖像,使其他內容顯示爲「inline(-block)」,將其絕對放置在容器內...請選擇。 – CBroe
這些都沒有工作。 –