2.常见网页布局

2.1常见网页布局

第一种
2.常见网页布局_第1张图片

第二种
2.常见网页布局_第2张图片

第三种(最常见的)
2.常见网页布局_第3张图片
【示例代码】

DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        .top {
            background-color: #ececf8;
            height: 55px;
        }

        .banner {
            width: 770px;
            height: 145px;
            background-color: #ececf8;
            margin: 17px auto 19px;
        }

        .box {
            height: 375px;
            width: 766px;
            background-color: #ececf8;
            margin: 0 auto 16px;
        }

        .n1>div {
            float: left;
            height: 110px;
            width: 184px;
            background-color: pink;
            margin-bottom: 25px;
            margin-right: 10px;
        }

        .n1 .s1 {
            margin-right: 0;
        }

        .n2>div {
            float: left;
            height: 240px;
            width: 184px;
            background-color: pink;
            margin-right: 10px;
        }

        .n2 .s2 {
            margin-right: 0;
        }
		/* 通栏不需要指定宽度,与浏览器一样宽 */
        .footer {
            height: 195px;
            background-color: #ececf8;
        }
    style>
head>

<body>
    <div class="top">topdiv>
    <div class="banner">bannerdiv>
    <div class="box">
        <div class="n1">
            <div>1div>
            <div>2div>
            <div>3div>
            <div class="s1">4div>
        div>
        <div class="n2">
            <div>5div>
            <div>6div>
            <div>7div>
            <div class="s2">8div>
        div>
    div>
    <div class="footer">footerdiv>
body>

html>

2.常见网页布局_第4张图片

2.2浮动布局注意点

1.浮动和标准流的父盒子搭配
先用标准流的父元素排列上下位置,之后内部子元素采取浮动排列左右位置
2. 一个元素浮动了,理论上其余的兄弟元素也要浮动
一个盒子里面有多个子盒子,如果其中一个盒子浮动了,那么其他兄弟也应该浮动,以防止引起问题。

注意:
浮动的盒子只会影响浮动盒子后面的标准流,不会影响前面的标准流

【示例代码】

DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>
    <style>
        .box {
            width: 600px;
            height: 300px;
            background-color: antiquewhite;
            margin: 0 auto;
        }

        .one {
            /* float: left; */
            width: 100px;
            height: 100px;
            background-color: skyblue;
        }

        .two {
            float: left;
            width: 130px;
            height: 150px;
            background-color: pink;
        }

        .three {
            /* float: left; */
            width: 200px;
            height: 200px;
            background-color: greenyellow;
        }
    style>
head>

<body>
    <div class="box">
        <div class="one">大一div>
        <div class="two">大二div>
        <div class="three">大三div>
    div>
body>

html>
 

2.常见网页布局_第5张图片

即前面的标准流(大一)独占一行,不会被后面的浮动流(大二)压住,但后面的标准流(大三)会被前面的浮动流压住
当上述大一、大三为浮动流,大二为标准流时:
2.常见网页布局_第6张图片

2.3 思考

我们前面用浮动元素时都有一个标准流的父元素, 他们有一个共同的特点——都有高度.
但是,并不是所有的父盒子都必须有高度
2.常见网页布局_第7张图片

理想中的状态:让子盒子撑开父盒子,有多少子盒子,父盒子就有多高.

你可能感兴趣的:(前端——CSS,css,css3,html,前端)