cssにおけるwidth、heightの100%とauto

1131 ワード

  • 100%,.boxの親箱はbodyです.
  • .box {
      width: 100%;
      height: 100%;
      background-color: black;
    }
    //          ,  。
    //          ,   ,       。
    //     body 100%  , html 100%  。
    .box {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: black;
    }
    //       positon:absolute ,        。
    //         100%       。
    //  margin      。
  • auto,.boxの親箱はbodyです.
  •   .box{
      width: auto;
      height: auto;
      background-color: aquamarine;
      }
    //          ,  。
    //          ,   ,       。

     
     .box{
      width: 100px;
      height: auto;
      background-color: aquamarine;
      }
    
    
      
    1111111111111111111111111111111

     
    word-wrap:break-wordを設定します.後
     
     .box{
      width: auto;
      height: 10px;
      background-color: aquamarine;
      }
    
    
      
    1111111111111111111111111111111
    // 100% 10px 。 // margin , margin 。
  • autoは、高さのあるサブエレメントまたはそれ自体が高さを有する必要があります.そうしないとheightは表示されません.
  • autoデフォルトwidthは、前のレベルの100%に対応します.