图像从容器中取出

时间:2015-10-16 作者:IXN

enter image description here

在我的索引页面中,我使用了文章摘录旁边的特色图片。

    .alignleft {
        display: inline;
        float: left;
        margin-right: 1.5em;}
   .wp-post-image {
        margin-left: 1em;
        width: 120px;
        height: 90px;}
虽然它包含在文章中(.hentry)

    <article id="post-1727" class="post-1727 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized">

<header class="entry-header">
            <h2 class="entry-title"><a href="http://localhost/wordpress/2015/10/08/image-on-post/" rel="bookmark">Image on post</a></h2>
        </header><!-- .entry-header -->

                <a href="http://xxx" title="Image on post" class="alignleft">
                <img src="http://xxx" class="attachment-post-thumbnail wp-post-image" alt="dsc20040724_152504_532" height="480" width="640">        </a>
        <!-- post thumbnail -->

        <div class="entry-summary">
            <p> text here</p>

                </div><!-- .entry-content -->

    .hentry {
        margin: 0px 0px 0.5em;
        padding: 5px 0px 0em 0.4em;
        border-bottom: 1px solid #ccc;}
我无法阻止它离开物品边界。我试图调整利润率,但没有多大帮助。我怎样才能防止图像脱离物品区域?

PS:我知道这可以被认为是一个一般的css问题。我在这里问这个问题是因为它与wordpress的特色图像功能有关。

1 个回复
最合适的回答,由SO网友:Robert hue 整理而成

改变hentry CSS并将溢出添加到隐藏。像这样。

.hentry {
    margin: 0px 0px 0.5em;
    padding: 5px 0px 0em 0.4em;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
 }
这将解决图像超出文章容器的问题。

相关推荐

在带有PHP的子主题中包含style.css

在里面https://codex.wordpress.org/Child_Themes 这是包含样式的最佳实践。css在子主题中,必须将下面的代码放入函数中。php的子主题,但将“父样式”替换为可以在函数中找到的父主题的参数。父主题的php。我在我的主题文件中找不到它,那里也没有多少代码。使用@import包含父主题样式表的方法不适用于我,放入文件的css不会在任何浏览器的站点上显示自己。function my_theme_enqueue_styles() { $parent_s