为什么元素的高度和宽度与 CSS 中指定的不同?
这是 jsfiddle 的链接,http://jsfiddle.net/sunnycpp/2hNkk/
相同的代码在这里复制粘贴,
HTML
<!DOCTYPE html>
<html>
<body>
<div id="target">
<p>Click here set promise as Done!</p>
</div>
<br/>
<div id="reset" ><p>Reset</p></div>
</body>
</html>
CSS
DIV {
display:inline-block;
vertical-align:middle;
text-align:center;
margin-bottom: 10px;
}
#target {
width:200;
height:200;
background-color:yellow;
}
#reset {
width:100;
height:100;
background-color:grey;
color:white;
}