CSS div溢出隐藏和浮动

时间:2014-05-13 09:30:41

标签: html css css3

我正在尝试一些非常简单的事情:

在左侧创建一个带有文本的主体,并将所有可用空间从最大值调整到最小值,并且它可以浮动。在该div的右侧,我想添加一个新的div,最后将包含一个菜单。

我看了一下这个论坛并尝试了很多东西,但我无法实现我想要的目标。

我希望我的#rightcolumn在可能的时候在右边,当它不是时,它应该被隐藏。

我成功地找到了我想要的一切但从未同时找到过。

我使用相关位置,内联而不是浮动,没有浮动,它不在同一条线上。

这是我的实际代码:

    <!DOCTYPE html>
<html>
<head>
<style>
html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed,
    figure, figcaption, footer, header, hgroup,
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    }
    /* HTML5 display-role reset for older browsers */
    article, aside, details, figcaption, figure,
    footer, header, hgroup, menu, nav, section {
    display: block;
    }
    body {
    line-height: 1;
    }
    ol, ul {
    list-style: none;
    }
    blockquote, q {
    quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content: '';
    content: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }



img 
{
float:bottom;

border:1px dotted black;
margin:0px 0px 15px 20px;
}
p {
    padding: 10px;
}

#rightcolumn{
    margin-left: -150px;
    width: 150px;
    height: 100px;
/*  float:left;*/
    background: #CC33FF;
float:left;
overflow:hidden;
    }

#wrapper {
    width: 100%;
    min-width: 1000px;
    max-width: 1000px;
    margin: 0 auto;
white-space:nowrap;

}


#contentliquid {
    float: left;
    width: 100%;
    min-width: 1000px;
float:left;
}

#content {

    background: #FFFFFF;
    margin-left: 0px;
    min-width: 1000px;
float:left;
}

</style>
</head>

<body>
<div id="wrapper">

    <div id="contentliquid">
        <div id="content">
            Test coucou
            </div>
    </div>

<div id="rightcolumn">
            <p>This is right</p>
        </div>

</div>
</body>

</html>

1 个答案:

答案 0 :(得分:1)

如果我理解你的问题是正确的。 我会说使用JavaScript很容易

(文档)$。就绪(函数(){     var length_of_content = $(&#39; #content&#39;)。width();

if((length_of_content+$('#rightcolumn').width()) >= 500) {
    $('#rightcolumn').css('display', 'none');
}

});

只需检查当前内容的长度并添加您想要显示的菜单的宽度,如果宽度>> 500或容器的最大尺寸应该是什么,那么只需隐藏与#rightmenue相同的菜单,否则显示它