在網頁設計中,CSS(層疊樣式表)是一項非常重要的技術。通過CSS,我們可以對網頁元素進行樣式的定義和控制,包括文字樣式、布局、背景、顏色等等。在本文章中,我將介紹一些CSS常用屬性,以便您更好地掌握CSS技術。
屬性名 說明 示例 color 字體顏色 color: red; background-color 背景顏色 background-color: blue; font-size 字體大小 font-size: 16px; font-weight 字體加粗 font-weight: bold; font-style 字體樣式(傾斜) font-style: italic; text-decoration 文字修飾(下劃線) text-decoration: underline; text-align 文字對齊 text-align: center; line-height 行高 line-height: 1.5; padding 內邊距 padding: 10px; margin 外邊距 margin: 20px; width 寬度 width: 100px; height 高度 height: 200px; border 邊框 border: 1px solid black; border-radius 邊框圓角 border-radius: 10px; display 顯示方式(塊、行) display: block; position 定位方式 position: relative; top 頂部距離 top: 10px; left 左部距離 left: 20px; z-index 層級 z-index: 1;
CSS屬性非常豐富,上述只是常用屬性的一部分。除此之外,還有很多屬性可以探索和使用。當您使用CSS時,請注意屬性的大小寫,也要注意CSS不支持等號(=)!!!
下一篇css帶版本號