即使在检查元素之后,Div元素也不显示在页面上

时间:2017-03-16 17:08:46

标签: html invisible

我有一个网站,应该适合移动和电脑,但我还没有添加后者。问题是,我有两个带有class =“row”的标签,但只有第一个出现(在你使页面足够小之后)。代码:

{{1}}

1 个答案:

答案 0 :(得分:2)

错误语法HTML:

<div class="size-small">
       <!-- The iframe must be closed </iframe> -->
       <!-- (if bootstrap) The class col-12 is col-sm-12 or col-md-12 or col-xs-12 (NOT col-12)  -->
        <div class="row"><iframe frameBorder="0" src="html/header-small.html" class="col-12" height="100px"></iframe></div>
        <div class="row">
            <div class="col-12 checkbox-mobile">
                <form>
                <!-- The input close is wrong. -->
                <!-- <input type="checkbox">BAD</input> -->
                     <input type="checkbox">GOOD
                </form>
            </div>
        </div>
    </div>