css - DIVs inside another DIV inside another DIV with CSS

标签 css html

这是我要实现的目标:

Preview

这是我写的 HTML 代码:

<div id="wrapper"> <!--This is the Div 1 in the picture-->
    <div id="topBar"> <!--This is the Div 2 in the picture-->
        <div id="logo"></div> <!--This is the Div 4 in the picture-->
        <div id="menu"></div> <!--This is the Div 5 in the picture-->
        <div id="login"><!--This is the Div 6 in the picture-->
            <div class="loginElement"><input type="text" id="txtUsername" class="loginElementBox" size="29"  value="User name" onClick="usernameFocus()" onBlur="usernameBlur()" /></div>               
            <div class="loginElement">
                <input type="text" name="txtFakePassword" id="txtFakePassword" class="loginElementBox" value="Password" onfocus="passwordFocus()" /><input style="display:none;" type="password" id="txtPassword" class="loginElementBoxFocus" onBlur="passwordBlur()" />
            </div>

            <input type="button" id="btnLogin" value="" onclick="login()"><br />

            <span id="lblError"></span>
        </div><!--Closing "login"-->
    </div><!--Closing "topBar"-->

    <div id="central"> <!--This is the Div 3 in the picture-->
        <div id="top3"> <!--This is the Div 7 in the picture-->

        </div>
    </div><!--Closing "central"-->
</div><!--Closing "wrapper"-->

这是CSS:

#wrapper
{
width:800px;
background-color:#f2f2e8;
position:relative;
left:50%;
margin-left:-400px;
border-radius: 10px;
-moz-border-radius: 10px;
padding:5px;
}

#topBar
{
width:780px;
border: 1px solid;
border-color: #dbd9ca;
border-radius: 10px;
-moz-border-radius: 10px;
margin:5px;
padding:5px;
}

#logo
{
width:153px;
height:66px;
background-image:url(../images_ui/logo2.png);
background-repeat:no-repeat;
background-position:left center;
margin:5px;
padding:5px;
float:left;
}

#menu
{
float:left;
width:400px;
position:relative;
}

#login
{
float:right;
width:80px;
}

#central
{
width:780px;
border: 1px solid;
border-color: #dbd9ca;
border-radius: 10px;
-moz-border-radius: 10px;
margin:5px;
margin-top:20px;
padding:5px;
}

在 Div 6 里面我还有几个 Div 这一切都是乱七八糟的。 Div 2 和 Div 3 在 Div 1 中看起来不错,Div 7 在 Div 3 中看起来不错,但是一旦我添加了 Div 3、4、5...我尝试了几种方法,包括 float 、位置等 - 没有任何效果,我不能'不要按我的意愿安排。有什么想法可以让它发挥作用吗?

最佳答案

#Div1
{
width:800px;
margin:0 auto;
overflow:hidden;
float:left;
}

#Div2
{
width:100%;
float:left;
}

#Div3
{
width:100%;
clear:both;
}

#Div4, #Div6
{
float:left;
width:30%;
}

#Div5
{
float:left;
width:40%;
}

#Div7
{
width:70%;
margin:50px auto;
}

如果我没有忘记一些应该围绕着它的东西

关于css - DIVs inside another DIV inside another DIV with CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9438437/

相关文章:

javascript - 垂直滑动导航菜单不起作用

javascript - 在 Bootstrap 导航中切换位置

css - 是什么导致 Safari 上的语义 UI 组件随机突出显示?

javascript - 逐行淡入

HTML & CSS : My UL extends out of container

html - 将屏幕分成 4 个象限,每个象限都有边框,不适用于表单标签

javascript - 在 div 中水平(在一行中)显示元素

javascript - Javascript 每 2 秒随机化一次图像

javascript - 防止滚动但 div 需要位置 :absolute

CSS:如何使跨度与其内容一样宽