这应该是显而易见的,但在所有主流浏览器中,div 内容都没有隐藏:
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test</title>
<style>
#confContent{
border:solid 1px #FF0000;
width:700px;
height:600px;
background-color:#00CC00;
left:50%;
display:none;
position:absolute;
}
</style>
</head>
<body>
<div id="confContent">
<p style="color:#0000FF">Some content goes here</p>
</div>
</body>
</html>
实际上,所有属性似乎都不起作用,div
没有向左移动 30%,没有背景颜色,没有隐藏,也没有边框。请帮忙。提前谢谢。