亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

男神
Follow

After following, you can keep track of his dynamic information in a timely manner

Course notes
  • Courses in the relevant section:CSS styles

    行內(nèi)樣式 <a href="#" style="color:red">php.cn</a> 內(nèi)聯(lián)樣式 <div class="dv"></div> <style>.dv{color:red;width:50px;height:50px;border:1px solid red;}</style> 外部樣式 <link href="style.css" rel="stylesheet" type="text/css"> 引入外部樣式需要注意自己文件的路徑,如果路徑不正確,css是沒有被引入進(jìn)來,是沒有效果的

    2016-11-290個贊

  • Courses in the relevant section:CSS basic selectors

    標(biāo)簽名選擇器 <div></div> <style>div{樣式代碼;}</style> 類選擇器 <div class="dv"></div> <style>.dv{樣式代碼;}</style> ID選擇器 <div id="dv"></div> <style>#dv{樣式代碼;}</style>

    2016-11-290個贊

  • Courses in the relevant section:The difference between CSS id selector and class selector

    在css樣式表中書寫時,id選擇符前面應(yīng)該加前綴符號‘#’,而class選擇符前面應(yīng)該加前綴符號‘.’ id屬性一般在一個頁面中只可以使用一次,而class可以被多次引用 id作為元素的標(biāo)簽,用于區(qū)分不同結(jié)構(gòu)和內(nèi)容,而class作為一個樣式,它可以應(yīng)用到任何結(jié)構(gòu)和內(nèi)容上

    2016-11-290個贊

  • Courses in the relevant section:CSS background background

    background-color: 指定填充背景的顏色。 background-image: 引用圖片作為背景。 background-position: 指定元素背景圖片的位置。 background-repeat: 決定是否重復(fù)背景圖片。 background-attachment: 決定背景圖是否隨頁面滾動

    2016-11-290個贊

  • Courses in the relevant section:CSS text styles

    設(shè)置文本縮進(jìn):text-indent:length(長度單位)可以負(fù)值 文本水平對齊方式:text-align:left左,center居中,right右 空白處理: white-space:nowrap(nowrap強(qiáng)制在一行中顯示,pre換行和空格保留,normal自動換行)

    2016-11-290個贊