css屬性速記

2021-08-07 18:42:00 字數 2411 閱讀 4796

css所有屬性如何快速記憶

看一張圖如何助你快速記憶:

css的屬性很多,有許多人都抱怨說要怎麼才能快速記憶css的屬性呢.在這裡我就把css所有的屬性列在一張小卡片上,大家可以像背英語單詞的小卡片一樣,用來記憶:css速記小紙片

字型屬性:(font)

大小 font-size: x-large;(特大) xx-small;(極小) 一般中文用不到,只要用數值就可以,單位:px、pd

樣式 font-style: oblique;(偏斜體) italic;(斜體) normal;(正常)

行高 line-height: normal;(正常) 單位:px、pd、em

粗細 font-weight: bold;(粗體) lighter;(細體) normal;(正常)

變體 font-variant: small-caps;(小型大寫字母) normal;(正常)

大小寫 text-transform: capitalize;(首字母大寫) uppercase;(大寫) lowercase;(小寫) none;(無)

修飾 text-decoration: underline;(下劃線) overline;(上劃線) line-through;(刪除線) blink;(閃爍)

常用字型:(font-family)

"courier new", courier, monospace, "times new roman", times, serif, arial, helvetica, sans-serif, verdana

背景屬性:(background)

色彩 background-color: #ffffff;

background-image: url();

重複 background-repeat: no-repeat;

滾動 background-attachment: fixed;(固定) scroll;(滾動)

位置 background-position: left(水平) top(垂直);

簡寫方法 background:#000 url(..) repeat fixed left top;

區塊屬性:(block)

字間距 letter-spacing: normal; 數值

對齊 text-align: justify;(兩端對齊) left;(左對齊) right;(右對齊) center;(居中)

縮排 text-indent: 數值px;

垂直對齊 vertical-align: baseline;(基線) sub;(下標) super;(下標) top; text-top; middle; bottom; text-bottom;

詞間距 word-spacing: normal; 數值

空格 white-space: pre;(保留) nowrap;(不換行)

顯示 display:block;(塊) inline;(內嵌) list-item;(列表項) run-in;(追加部分) compact;(緊湊) marker;(標記) table; inline-table; table-raw-group; table-header-group; table-footer-group; table-raw; table-column-group; table-column; table-cell; table-caption;(**標題)

方框屬性:(box)

width:; height:; float:; clear:both; margin:; padding:; 順序:上右下左

邊框屬性:(border)

border-style: dotted;(點線) dashed;(虛線) solid; double;(雙線) groove;(槽線) ridge;(脊狀) inset;(凹陷) outset;

border-width:; 邊框寬度

border-color:#;

簡寫方法 border:width style color;

列表屬性:(list-style)

型別 list-style-type:disc;(圓點) circle;(圓圈) square;(方塊) decimal;(數字) lower-roman;(小羅碼數字) upper-roman; lower-alpha; upper-alpha;

位置 list-style-position: outside;(外) inside;

影象 list-style-image: url(..);

定位屬性:(position)

position: absolute; relative; static;

visibility: inherit; visible; hidden;

overflow: visible; hidden; scroll; auto;

clip: rect(12px,auto,12px,auto) (裁切)

CSS快速記憶筆記(四)

知識點34 css定位及特點 position 為什麼要用定位?定位 定位模式 邊偏移 重點記憶 將盒子定位在指定的某乙個位置,自由的漂浮在其他盒子 包括標準流和浮動 的上面。標準流在最底層,浮動在中間,定位在最高層 能說出為什麼常用的 子絕父相 布局?邊偏移 定位的盒子,是通過邊偏移來移動位置的,...

CSS十條速記口訣

如果在用css設計布局時遇到bug,請認真閱讀以下內容,非常容易記憶的,不知道哪位高人把css bug編成了順口溜了!看看好不好記住呢?一 ie邊框若顯若無,須注意,定是高度設定已忘記 二 浮動產生有緣故,若要父層包含住,緊跟浮動要清除,容器自然顯其中 三 三畫素文字慢移不必慌,高度設定幫你忙 四 ...

CSS3的快速記憶

border radius 25px box shadow 10px 10px 5px 888888 這個屬性挺重要的,特別是做的效果時.box shadow 陰影的x偏移值,陰影的y偏移值,模糊值,陰影大小,陰影顏色 其中偏移值可以為負數,陰影大小為0時是與原來一樣大,模糊值越大越模糊 borde...