0

Recently I started messing around with Unsemantic css framework, but it's seems that using grids and flexible images css markup doesn't work together. Is there a way for solving this problem?

4

1 回答 1

0

抱歉,忘记更新了,我解决了这个问题。我正在使用嵌套网格,因此忘记将网格类添加到其中之一(我很傻)。

<section id="blank-page-content" class="grid-100 grid-parent">      
        <article class="grid-100 grid-parent blank-page-post">

            <figure class="blank-page-post-thumbanil grid-20 grid-parent">
                <img src="" alt="ph-image"/>
            </figure>

            <section class="blank-page-post-content grid-80 grid-parent">
            </section>

        </article>
</section>

我在顶级部分元素上缺少 class="grid-100 grid-parent" 。

于 2014-01-25T10:53:33.363 回答