国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

使用跨瀏覽器解決方案設(shè)定一個清單項目標(biāo)記的圖像

實例解析:

ul:

 ● 設(shè)定列表樣式類型為沒有刪除列表項目標(biāo)記

 ● 設(shè)定填滿與邊距0px(瀏覽器相容性)

ul中所有l(wèi)i:

# ● 設(shè)定影像的URL,並設(shè)定它只顯示一次(無重複)

 ● 您需要的定位影像位置(左0px和上下5px)

 ● 用padding-left屬性把文字置於清單中


繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文網(wǎng)(php.cn)</title> <style> ul { list-style-type:none; padding:0px; margin:0px; } ul li { background-image:url("https://img.php.cn/upload/article/000/000/015/5c6e720242040312.gif"); background-repeat:no-repeat; background-position:0px 5px; padding-left:14px; } </style> </head> <body> <ul> <li>PHP</li> <li>JavaScript</li> <li>MySQl</li> </ul> </body> </html>