CSS3 box-sizing: margin-box; Why not?

后端 未结 9 1482
心在旅途
心在旅途 2020-12-04 11:39

Why don\'t we have box-sizing: margin-box;? Usually when we put box-sizing: border-box; in our style sheets we really mean the former.


9条回答
  •  情深已故
    2020-12-04 12:21

    There interesting situation when using box-sizing inside body content

    no content no border box gives no any value on left-right margin % recount of this two box recount algoritms

      .body{
        box-sizing: border-box;
        margin:0 3%;
      }
    

    Firefox versions before 57 also supported the padding-box value for box-sizing, though this value was been removed from the specification and later versions of the browser.

    So margin-box even not planned...

提交回复
热议问题