您好,登錄后才能下訂單哦!
前端基礎(chǔ)知識(shí)
前端開發(fā)語言:
HTML(Hypertext Markup Language):超文本標(biāo)記語言;
CSS(Cascading Style Sheets):層疊樣式表;
JS(JavaScript):腳本語言。
樣式表:
行間樣式表、內(nèi)部樣式表、外部樣式表。
樣式
樣式格式:屬性名:屬性值;
常見樣式:
border:1px solid red
border-width:1px
border-style:solid
border-color:red
常見顏色模式:
關(guān)鍵字:red yellow blue white...
rgb:(123,12,44)
十六進(jìn)制:#3f3f3f
盒子邊框
border-top:1px solid red
border-right:1px solid red
border-bottom:1px solid red
border-left:1px solid red
背景
background-color
background-p_w_picpath
background-repeat:(no-repeat repeat-x repeat-y repeat inherit)
background-position:(top right bottom left 30px 20px 50% 30% inherit)
background-p_w_upload:(srcoll fixed inherit)
background復(fù)合:blue url(./a.img) no-repeat 20px 30px fixed;
文字設(shè)置
font-weight:(normal bold bolder lighter 100~900(normal:400,blod:700) inherit)
font-style:(normal italic oblique inherit)
font-size:字體大小
line-height:行高
font-family:元素字體
font復(fù)合:font-style font-weight font-size/line-hight font-family
文本設(shè)置
color
text-align
text-indent
text-decoration
letter-spacing
word-spacing
white-space:(normal pre nowrap pre-wrap pre-line inherit)
超鏈接
a:link 未訪問過的鏈接;
a:visited 已訪問過的鏈接;
a:hover 鼠標(biāo)放在鏈接上時(shí);
a:active 鏈接被點(diǎn)擊的那一刻;
規(guī)則:a:hover必須放在a:link和a:visited后面,a:active 必須放在a:hover后面。
download下載:點(diǎn)擊下載href指定的地址內(nèi)容。
target:_blank _self _parent _top filename
base標(biāo)簽:在<head>頭部為頁面上所有鏈接規(guī)定默認(rèn)目標(biāo)。
此處僅作了解,后篇文章會(huì)深入講解。
padding填充
padding-top padding-rihgt padding-bottom padding-left
padding:15px 20px 18px 25px
上填充:15px
右填充:20px
下填充:18px
左填充:25px
padding:10px 20px 15px
上填充:10px
左右填充:20px
下填充:15px
padding:20px 15px
上下填充:20px
左右填充:15px
填充(內(nèi)邊距):相當(dāng)于給盒子填充了厚度,會(huì)影響盒子的大小。
margin外邊距
margin-top margin-rihgt margin-bottom margin-left
margin:15px 20px 18px 25px
上邊距:15px
右邊距:20px
下邊距:18px
左邊距:25px
padding:10px 20px 15px
上邊距:10px
左右邊距:20px
下邊距:15px
padding:20px 15px
上下邊距:20px
左右邊距:15px
padding:100px auto 0px
上邊距:100px
左右邊距:居中
下邊距:0px
盒子模型
盒子大?。哼吘?、邊框、填充、內(nèi)容。
盒子寬度:margin-left + border-left + padding-left + width + padding-right + border-right + margin-right;
盒子高度:margin-top + border-top + padding-top + height + padding-bottom + border-bottom + margin-bottom;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。