為什么我的top_content 盒子就是不起作用?改為1000px 或者500px 都不起作用
@charset"utf-8";
/*CSS Document*/
*{
margin:0;
padding:0;
font-size:12px;
}
body{
background-color:#f5f5f5;
}
.top{
width:100%;
height:27px;
background:url(../images/top_bg.jpg) repeat-x;
}
.top_content {
width: 1000px;
margin: 0 auto;
line-height: 27px;
}
<html> ????<head> ????????<meta?http-equiv="Content-Type"?content="text/html;?charset=utf-8"?/> ????????<title>無標(biāo)題文檔</title> ????????<link?href="css/main.css"?rel="stylesheet"?type="text/css"?/> ????</head> ????<body> ????????<div?class="top"> ????????????<div?class="top_content"> ??? ????????????????<ul> ????? ????????????????????<li>聯(lián)系我們</li> ????? ????????????????????<li>加入收藏</li> ????? ????????????????????<li>設(shè)為首頁</li> ??? ????????????????</ul>? ????????????</div> ????????</div> ????????<!--top結(jié)束--> ????</body> </html>
2018-09-15
管用的,你可以給 .top_content 加一個(gè)背景顏色background-color:skyblue; 看效果。