问答详情
源自:1-2 tab页面布局-标题布局

标签栏出不来

为什么到5:21时,按老师讲的,连标签栏都出不来

提问者:鸠拉3967667 2017-02-17 21:36

个回答

  • 倚笑乘风
    2017-02-19 15:52:26

    那会还没有加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>