实现如下页面布局。核心区域左侧自适应,右侧固定宽度 200px

原题目:牛客网-阿里巴巴2016前端开发工程师笔试(一):10题
要求自适应,那一开始就不能把左侧content的宽度给设死了。尝试了几次一开始思维定式就先从左至右写吧,于是

    .content {
                height: 400px;
                margin: 0;
                margin-right: 210px;
                text-align: left;
                border: blue solid 2px;
            }

            .aside {
                float: right;
                border: red solid 2px;
                text-align: left;
                width: 196px;
                /*margin-left: -210px;*/
            }

<div class="content">content-自适应宽度div>
<div class="aside">aside-定宽 200pxdiv> 

然而这样就会发现aside与content始终无法再同一行显示(content所在的div因为默认情况下独占一行,因此aside就算浮动也会重起一行开始往右靠),效果如下:
实现如下页面布局。核心区域左侧自适应,右侧固定宽度 200px_第1张图片
于是要怎么把两个div加载到同一行呢?display:inline、inline-block但是没办法设置想要的宽度高度啊。。
突然间发现float的脱离文本流属性,只要先把content的布局放在那,aside布局float之后自然可以浮动在同一行的右边了!
切记:不要清除浮动!(不然浮动作用就没有了,content又会重起一行达不到同一行效果)
最终根据思路改成了:


<html>
    <head>
        <meta charset="UTF-8">
        <title>title>
        <style type="text/css">
            body {
                margin: 0 10px;
                padding: 0; 
            }

            .header {
                width: 100%;
                height: 100px;
                border: green solid 2px;
                margin: 10px auto;
            }

            .logo {
                width: 40px;
                height: 50px;
                margin: 10px;
                border: purple solid 2px;
                text-align: left;
            }

            .uname {
                width: 100px;
                height: 20px;
                text-align: right;
                margin-bottom: 10px;
                margin-right: 10px;
                border: purple solid 2px;
                float: right;
            }

            .main {
                height: 400px;
                margin: 10px auto;
                width: 100%;
            }

            .content {
                height: 400px;
                margin: 0;
                margin-right: 210px;
                text-align: left;
                border: blue solid 2px;
            }

            .aside {
                float: right;
                border: red solid 2px;
                text-align: left;
                width: 196px;
            }

            .footer {
                width: 100%;
                height: 30px;
                text-align: center;
                border: #000 solid 2px;
            }
        style>
    head>
    <body>
        <div class="header">
            <div class="logo">Logodiv>
            <div class="uname">用户名div>
            <div style="clear: both;content:''">div>
        div>
        <div class="main">
            
            <div class="aside">aside-定宽 200pxdiv>
            <div class="content">content-自适应宽度div>
        div>
       <div class="footer">footerdiv>
    body>
html>

最终效果达成:
实现如下页面布局。核心区域左侧自适应,右侧固定宽度 200px_第2张图片


随着浏览器窗口大小缩放,可以实现宽度自适应放大缩小了

你可能感兴趣的:(#,div+css自适应)