0

我对整个 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 -->

我想要页面左上角的图像(类似于放置推荐的方式),有人可以帮忙吗?谢谢!

4

1 回答 1

0

如果你把它放在那里似乎工作。您可能在某处标记了错误。将您的 div 替换为“内容”的 id,如下所示:

<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>
于 2013-08-28T22:35:44.073 回答