首頁  >  文章  >  web前端  >  css border-top-width屬性怎麼用

css border-top-width屬性怎麼用

silencement
silencement原創
2019-05-28 14:10:532781瀏覽

css border-top-width屬性怎麼用

css border-top-width屬性定義及用法

在css中,border-top-width屬性是用來設定元素頂部邊框寬度的,當我們要單獨對元素頂部邊框寬度進行設定的時候,就可以使用該屬性。如果我們同時也要設定元素頂部邊框的其它屬性(border-top-style屬性、border-top-color屬性),我們可以使用border-top屬性將這些元素頂部邊框屬性定義到一個聲明中。可以少寫幾行程式碼,可讀性更好。

注意:元素單獨使用border-top-width屬性看不出效果,因為元素邊框預設是透明的,對透明的邊框設定寬度是看不到效果的,所以使用border-top-width屬性就得定義頂部邊框樣式(border-top-style)。

css border-top-width屬性語法格式

css語法:border-top-width: thin / medium / thick / length / inherit

JavaScript語法:object.style.borderTopWidth=" thin / medium / thick / length / inherit"

css border-top-width屬性值說明

thin:細的邊框

medium:中等的邊框(預設)

thick :粗的邊框

length:自訂邊框的寬度(例如:8px;)

Inherit:從父元素繼承邊框寬度

#實例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>css border-top-width属性设置顶部边框宽度笔记</title>
<style type="text/css">
body{background: #ddd;font-size:20px;}
#a,#b,#c,#d{margin-top:18px;width:360px;border-top-style:solid;}
#a{border-top-width:thin;}
#b{border-top-width:medium;}
#c{border-top-width:thick;}
#d{border-top-width:6px;}
</style>
</head>
<body>
<div id = "a">thin:细的边框</div>
<div id = "b">medium:中等的边框(默认);</div>
<div id = "c">thick :粗的边框;</div>
<div id = "d">6px:自定义边框的宽度为6px;</div>
</body>
</html>

執行結果

css border-top-width屬性怎麼用

################################################################################# #

以上是css border-top-width屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多