【问题标题】:Styling Boxes in ie9 - CSS Cross Browser Issueie9 中的样式框 - CSS 跨浏览器问题
【发布时间】:2015-04-21 20:37:41
【问题描述】:

我在 ie9 中的网站遇到了一些问题。

这些框应该像下面的屏幕截图那样堆叠到单独的项目中,但在 ie9 中,底部的介绍文本区域会为自己创建一个单独的框并且不合时宜...

它应该看起来像这样: http://pagedev.co.uk/qube-issue/2.png 但它是这样的: http://pagedev.co.uk/qube-issue/1.png

我的html是:

<div class="projects-wrapper">
    <!--Open Brief Project-->
    <div class="projects-single">
        <a href="#"><img src="<?php the_field( 'thumbnail' ); ?>"></a>
        <div class="project-intro">
            <h3><?php the_field( 'project_title' ); ?><h3>
        </div>
    </div>
    <!--Close Brief Project-->
</div>

我的 CSS 是:

.projects-wrapper {
    width:100%;
    height:auto;
    margin-bottom:45px;
}

.projects-single {
    width:30%;
    height:auto;
    display:inline-block;
    background-color:#ffffff;
    margin-right:3%;
    margin-bottom:35px;
    vertical-align:top;
    float:left;
}

.projects-single img {
    width:100%;
    height:auto;
    margin-bottom:-5px;
}

.project-intro  {
    width:83%;
    height:auto;
    padding-left:8%;
    padding-right:8%;
    padding-top:6%;
    padding-bottom:6%;
}

.project-intro h3   {
    margin-bottom:0px;
    font-size:15px;
}

我正在努力弄清楚我需要改变什么才能让它在 ie9 中工作

如果您需要更多信息,请告诉我,我会发布。

任何帮助都会很棒!

【问题讨论】:

    标签: html css internet-explorer cross-browser


    【解决方案1】:

    您的标记中有错误,您的h3 元素未关闭。

    更正:

    <h3><?php the_field( 'project_title' ); ?></h3>
    

    【讨论】:

    • 事情如此简单!哈谢谢你:)
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-04-03
    • 2010-11-29
    • 1970-01-01
    • 2014-03-03
    • 2011-09-11
    相关资源
    最近更新 更多