标签栏出不来
为什么到5:21时,按老师讲的,连标签栏都出不来
为什么到5:21时,按老师讲的,连标签栏都出不来
2017-02-17
那会还没有加class当然没出来了。内容就是下面这样的。
<!DOCTYPE html> <html> <head> <title>tab change</title> <meta charset="utf-8"> <style type="text/css"> *{margin:0; padding: 0; list-style: none; font-size: 14px;} .notice{ width: 298px; height: 98px; border: 1px solid #eee; margin: 10px; } .notice-tit{ height: 27px; background: #f7f7f7; position: relative; } </style> </head> <body> <div id="notice" class="notice"> <div id="notice-tit" class="notice-tit"> <ul> <li><a href="#">公告</a></li> </ul> </div> </div> </body> </html>
举报