Garis CSS
Garis ialah garisan yang dilukis di sekeliling elemen, terletak di luar pinggir sempadan, yang boleh menyerlahkan elemen.
Atribut garis besar menentukan gaya, warna dan lebar sempadan luar.
Garis CSS (garis besar)
Garis besar (garis besar) ialah garisan yang dilukis di sekeliling elemen, terletak di luar tepi sempadan. Untuk menonjolkan peranan elemen.
Sifat garis besar CSS menentukan gaya, warna dan lebar garis besar elemen.
Semua sifat garis CSS
Nombor dalam lajur "CSS" menunjukkan versi CSS yang mentakrifkan sifat tersebut (CSS1 atau CSS2).
Contoh aplikasi:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css"> p { border: red solid thin; } p.dotted {outline-style: dotted} p.dashed {outline-style: dashed} p.solid {outline-style: solid} p.double {outline-style: double} p.groove {outline-style: groove} p.ridge {outline-style: ridge} p.inset {outline-style: inset} p.outset {outline-style: outset} </style> </head> <body> <p class="dotted">A dotted outline</p> <p class="dashed">A dashed outline</p> <p class="solid">A solid outline</p> <p class="double">A double outline</p> <p class="groove">A groove outline</p> <p class="ridge">A ridge outline</p> <p class="inset">An inset outline</p> <p class="outset">An outset outline</p> <p><b>注释:</b>只有在规定了 !DOCTYPE 时,Internet Explorer 8 (以及更高版本) 才支持 outline-style 属性。</p> </body> </html>
Contoh 2:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>轮廓测试</title> <style> .show{ margin: 50px; width: 100px; height: 100px; background-color: blue; border-radius : 1px; box-shadow: 0 0 0 30px lightblue; } </style> </head> <body> <div class="show">CSS轮廓</div> </body> </html>