前端学习(1806):前端调试之列表伪类练习二
生活随笔
收集整理的這篇文章主要介紹了
前端学习(1806):前端调试之列表伪类练习二
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
index.html
<!DOCTYPE html> <html lang="en"><head><!--系統內置 start--><script type="text/javascript"></script><!--系統內置 end--><meta charset="UTF-8"><title>練習</title><!-- 不要忘記引入index.css --><link rel="stylesheet" href="index.css"> </head><body><div class="computer"></div><ul><li class="title">小米筆記本Pro 15.6</li><li class="price">5599元起</li></ul> </body></html>index.css
* {margin: 0;padding: 0; } .computer{width: 126px; height: 86px; background:url(./images/image1.png); margin-bottom:15px; } ul{list-style:none; } .title{font-size: 12px; line-height: 17px; color: #000000; text-align:center; margin-bottom:6px; } .price{font-size: 12px; line-height: 17px; color: #FD6821; text-align:center; }運行結果
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的前端学习(1806):前端调试之列表伪类练习二的全部內容,希望文章能夠幫你解決所遇到的問題。