首頁 > web前端 > css教學 > css中內邊框是什麼

css中內邊框是什麼

醉折花枝作酒筹
發布: 2023-01-06 11:16:08
原創
10003 人瀏覽過

在css中,內邊框是用box-sizing屬性設定的,只需要給元素添加「box-sizing:border-box;」樣式即可。 box-sizing屬性值為border-box,表示指定寬度和高度決定元素邊框。

css中內邊框是什麼

本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。

下面我們先來看看css設定內邊框的範例。

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8" />

    <style>

      div.container {

        width: 30em;

        height: 106px;

        border: 1em solid;

      }

 

      div.box1 {

        width: 50%;

        border: 1em solid red;

        float: left;

      }

 

      div.box2 {

        box-sizing: border-box;

        -moz-box-sizing: border-box;

        /* Firefox */

        width: 50%;

        border: 1em solid red;

        float: left;

      }

    </style>

  </head>

 

  <body>

    <div class="container">

      <div class="box1">普通边框!!</div>

      <div class="box2">内边框!!</div>

    </div>

  </body>

</html>

登入後複製

css中內邊框是什麼

box-sizing屬性

box-sizing 屬性可讓您以特定的方式定義符合某個區域的特定元素。

例如,假如您需要並排放置兩個帶有邊框的框,可透過將 box-sizing 設定為 "border-box"。這可令瀏覽器呈現出具有指定寬度和高度的框框,並將邊框和內邊距放入框中。

語法

1

box-sizing: content-box|border-box|inherit;

登入後複製

屬性值:

content-box:這是 CSS2.1 指定的寬度和高度的行為。指定元素的寬度和高度(最小/最大屬性)適用於box的寬度和高度。元素的填滿和邊框佈局和繪製指定寬度和高度除外

border-box:指定寬度和高度(最小/最大屬性)確定元素邊框。也就是說,對元素指定寬度和高度包括了 padding 和 border 。透過從已設定的寬度和高度分別減去邊框和內邊距才能得到內容的寬度和高度。

inherit:指定 box-sizing 屬性的值,應該從父元素繼承。

範例:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8" />

    <style>

      div.container {

        width: 30em;

        height: 74px;

        border: 1em solid;

      }

      div.box {

        box-sizing: border-box;

        -moz-box-sizing: border-box; /* Firefox */

        width: 50%;

        border: 1em solid red;

        float: left;

      }

    </style>

  </head>

  <body>

    <div class="container">

      <div class="box">这个 div 占据了左边的一半。</div>

      <div class="box">这个 div 占据了右边的一半。</div>

    </div>

  </body>

</html>

登入後複製

效果圖:

css中內邊框是什麼

#

以上是css中內邊框是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板