004、border 邊框:元件的邊框,裡面是內容

1、邊框是元件是四個邊

<style type="text/css">
div{
    border: 10px solid blue;    /* 通常就這麼寫,如果沒有特別需求 */
}
</style>
<div>哈囉!你好啊!</div>

哈囉!你好啊!

 

<style type="text/css">
div{
    border-width: 10px;
    border-style: double;
    border-color: green;
}
</style>
<div>哈囉!你好啊!</div>

哈囉!你好啊!

 

2、可以分別設定邊框的四個邊,上下左右

<style type="text/css">
div{
    border-top-width: 3px;
    border-top-style: solid;
    border-top-color: yellow;

    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: red;

    border-left-width: 10px;
    border-left-style: solid;
    border-left-color: green;

    border-right-width: 6px;
    border-right-style: solid;
    border-right-color: blue;
}
</style>
<div>哈囉!你好啊!</div>

哈囉!你好啊!

 

3、畫出正方形 與 長方形

 

<style type="text/css">
div{
    width: 200px;
    height: 200px;
    border: 3px solid blue;
}
</style>
<div>正方形:200x200 像素</div>

正方形:200x200 像素

 

<style type="text/css">
div#d1{
    border: 1px solid #333;
    height: 500px;
}
div#d2{
    width: 50%;
    height: 50%;
    border: 3px solid blue;
}
</style>
<div>長方形:50% x 50% 百分心</div>

長方形:50% x 50% 百分心

 

4、邊框的圓角設定:可以用來畫圓

 

<style type="text/css">
div{
    width: 400px;
    height: 200px;
    border: 3px solid blue;
    border-radius: 50px;
}
</style>
<div>長方形寬高:400x200 像素,圓角50px</div>

長方形寬高:400x200 像素,圓角 50 像素

 

<style type="text/css">
div{
    width: 300px;
    height: 300px;
    border: 3px solid blue;
    border-radius: 50%;
}
</style>
<div>長方形寬高:400x200 像素,圓角50px</div>

圓形:邊框 300像素
shape
shape