如何在div的底部放置文本?

时间:2015-02-03 01:21:51

标签: html position

我正在尝试在DIV底部的菜单中放置一行版权文本,以使该行与右侧图像的底部对齐。你可以在这里看到它:

原始问题的网站:stephenpilkington dot com(将此链接视为垃圾邮件)。

评论代码:

<div id="sidebar">
    <!-- TITLE --> 
    <a href="#"> 
        <img src="<?php bloginfo('template_url'); ?>/img/this-is-a.png" alt="" /> 
    </a> 
    <! -- END TITLE --> 
    <!-- NAVIGATION --> 
    <ul id="navigation"> 
        <li><?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?></li>
    </ul> 
    <!-- END NAVIGATION --> 
    <!-- CREDITS --> 
    <div id="credits"> 
        <div class="sub"> © Stephen Pilkington 2015 
      </a> 
        </div> 
    </div> 
    <!-- END CREDITS --> 
</div> 
<!-- end sidebar -->

评论中的图片:

Image from comments

1 个答案:

答案 0 :(得分:0)

尝试移动                 ©Stephen Pilkington 2015

    </div>

之下
<img class="nature alignnone wp-image-17 size-medium" style="" src="http://stephenpilkington.com/wp-content/uploads/2015/02/me-215x300.jpg" alt="me" width="215" height="300" title="">

现在说起来有点难,但应该是它。