燕十八視訊--CSS
阿新 • • 發佈:2018-12-29
1,瀏覽器解析標準宣告doctype:總共有三種類型,分別為:transitional,strict,frameset
transitional:過渡型標準,這種標準允許使用表現層的標識,元素和屬性
strict:嚴格型標準,不允許使用表現層的標識,元素和屬性
frameset:框架型標準,當使用框架時需要使用此套標準
2,由於各個瀏覽器對網頁各元素初試值不一,所以需要使用一個CSS檔案初始化網頁,以避免各瀏覽器的差異而造成網頁顯示的差異
3,CSS引入方式:
標籤內:style="----"
style標籤:<style type="text/css" >-------</style>
外部引用:<link rel="stylesheet" type="text/css" href="----" />
CSS檔案內引用:import @url(----)
4,CSS基本屬性
佈局:float--clear, display, overflow,clip
定位:position, z-index, top, bottom, left, right
邊界:margin, margin-top, margin-bottom, margin-left, margin-right
邊框:border, border-top , border-top-style, border-top-color, border-top-width, border-radius
補白:padding, padding-top, padding-bottom, padding-left, padding-right
尺寸:width, height, min-width, max-width
背景:background, background-color, background-image, background-repeat, background-attachment, background-clip,
background-origin , background-size, background-position
顏色:color, opacity(檢索或設定物件的不透明度,0--1.0)
字型:font, font-style, font-weight, font-size, font-family,
文字:text-indent(首行縮排), text-align, line-height, text-decoration
表格:border-collapse(融合單元格邊框)
5,CSS選擇器
元素選擇器:通配選擇器(*), 型別選擇器(E), id選擇器,class選擇器
關係選擇符:E F, E>F, E+F, E~F
屬性選擇符
偽類選擇符
偽物件選擇符