我对整个HTML场景相对较新。我一直在与我的公司网站(admininsight.com)合作,我一直试图将图像放在"医疗账单/编码页面的侧边栏中http://admininsight.com/medical.html
以下是我一直在尝试的代码:
<div class="grid_9 pull_3"> <img src="../images/medicine.jpg" alt="medicine" width="250px" longdesc="images/medicine.jpg" /></div>
<!-- InstanceEndEditable -->
我希望图片位于页面的左上角(类似于推荐书的放置方式),任何人都可以帮忙吗? 谢谢!
答案 0 :(得分:0)
如果你把它放在那里似乎工作。您可能会在某处标记错误。用以下内容替换id为“content”的div:
<div class="container_12" id="content">
<!-- InstanceBeginEditable name="MainContent" -->
<div class="grid_9 push_3">
<img alt="senior" longdesc="images/medical-billing.jpg" src="../images/medical-billing.jpg" width="100%">
<div style="height:30px;"></div><!-- div to space elements -->
<h2>Medical Coding and Billing Services</h2>
<p>Our staff has extensive prior experience working for local major medical providers. We know how to properly process receivables using CPT and ICD-9 codes. If these service and diagnostic codes don't match up, it can delay payments and cost a small medical office big money.</p>
<p>Why take chances? For less than what you would pay an inexperienced part-timer to muddle their way through that paperwork, Administrative Insight can handle all of it - properly and professionally.</p>
</div><!-- InstanceEndEditable -->
<div style="height:30px;"></div>
<div class="grid_3 pull_9">
<img alt="medicine" longdesc="images/medicine.jpg" src="../images/medicine.jpg" width="250px">
</div>
<div class="clear"></div>
</div>