对于整个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 -->我想要页面左上角的图像(类似于推荐信的放置方式),有人能帮上忙吗?谢谢!
发布于 2013-08-29 06:35:44
如果你把它放进去就行了。您可能在某处标记了一个错误。将您的div替换为id为"content“的以下内容:
<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>https://stackoverflow.com/questions/18499233
复制相似问题