abstract:<!doctype html> <html> <meta charset="utf-8"> <title>导航浮动</title> <head> <style type="text/css"> ul li{list-style:&nb
<!doctype html> <html> <meta charset="utf-8"> <title>导航浮动</title> <head> <style type="text/css"> ul li{list-style: none; width:100px; height:40px;line-height: 40px; text-align: center; background-color: #ccc; margin:5px 5px; float:left;} </style> </head> <body> <ul> <li>HTML</li> <li>CSS</li> <li>JavaJScript</li> <li>jquery</li> <li>php</li> </ul> </body> </html>
Correcting teacher:查无此人Correction time:2019-05-20 09:09:46
Teacher's summary:完成的不错。浮动在移动端用到的比较多。继续加油。