• body背景和居中


    浮动
    1、代码1
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    
        <style>
            .container{
                border:solid 1px red;
            }
            .l{
                width: 100px;
                height: 100px;
                background-color: #00ee00;
                border: solid 1px darkblue;
            }
        </style>
    </head>
    <body>
    <div class="container">
        <div class="l">1</div>
        <div class="l">2</div>
        <div class="l">3</div>
        <div class="l">4</div>
        <div class="l">5</div>
        <div class="l">6</div>
        <div class="l">7</div>
        <div class="l">8</div>
    </div>
    </body>
    </html>
    
    

    代码2 

    .container 的宽度塌陷了
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    
        <style>
            .container{
                border:solid 1px red;
            }
            .l{
                  width: 100px;
                  height: 100px;
                  background-color: #00ee00;
                  border: solid 1px darkblue;
                  float: left;
              }
        </style>
    </head>
    <body>
    <div class="container">
        <div class="l">1</div>
        <div class="l">2</div>
        <div class="l">3</div>
        <div class="l">4</div>
        <div class="l">5</div>
        <div class="l">6</div>
        <div class="l">7</div>
        <div class="l">8</div>
    </div>
    </body>
    </html>

    
    
    解决浮动塌陷问题: 使用
     .clearflex::after


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    
        <style>
            .container{
                border:solid 1px red;
            }
            .clearflex::after{
                content: '';
                display: block;
                clear: both;
            }
            .l{
                  width: 100px;
                  height: 100px;
                  background-color: #00ee00;
                  border: solid 1px darkblue;
                  float: left;
              }
        </style>
    </head>
    <body>
    <div class="container clearflex">
        <div class="l">1</div>
        <div class="l">2</div>
        <div class="l">3</div>
        <div class="l">4</div>
        <div class="l">5</div>
        <div class="l">6</div>
        <div class="l">7</div>
        <div class="l">8</div>
    </div>
    </body>
    </html>

    
    
    背景图片练习 
    <head> <meta charset="UTF-8">

    <title>Title</title>

    <
    style> /*}*/
    body
    { /*body背景特殊*/ /*颜色 url repeat 上边为0 下边为0 撑满*/
    background
    : url("../aa.jpg") no-repeat 0 0/100%; }

    </style>
    </head>
    <body>
    <h1>lorem111</h1>

    <p>lorem2222</p> <div>lorem333</div> </body>

    Body元素的背景

    背景颜色

     

     

     

     

    <style>
    
            html{
                 background-color: #f8efc0;
             }
            /*}*/
            body{
                background:url("../aa.jpg");
                background-repeat: no-repeat;
                background-size: 100%;
            }
    
        </style>
    </head>
    <body>
    <h1>lorem111</h1>
    <p>lorem2222</p>
    <div>lorem333</div>
    </body>

    <style>
    
            /*html{*/
                 /*background-color: #f8efc0;*/
             /*}*/
            /*}*/
            body{
                background:url("../aa.jpg");
                background-repeat: no-repeat;
                background-size: 100%;
            }
    
        </style>
    </head>
    <body>
    <h1>lorem111</h1>
    <p>lorem2222</p>
    <div>lorem333</div>
    </body>

    居中

    行元素使用text-algin:center

  • 相关阅读:
    SpringMVC + Spring + MyBatis 学习笔记:遭遇order by 排序问题
    SpringMVC + Spring + MyBatis 学习笔记:SpringMVC和Spring一同工作的时候,AOP事务管理不起作用的解决方法
    SpringMVC + Spring + MyBatis 学习笔记:提交数据遭遇基础类型和日期类型报400错误解决方法
    SpringMVC + Spring + MyBatis 学习笔记:为MyBatis增加打印SQL功能 (最简化配置)
    [转]大部分人努力程度之低,根本轮不到拼天赋
    String内存陷阱简介
    同为程序员 为什么我的工资最低
    在程序员的眼里,用户是这样使用他们开发的软件的
    POI怎么和项目结合起来使用
    uploadify
  • 原文地址:https://www.cnblogs.com/chenduzizhong/p/11215936.html
Copyright © 2020-2023  润新知