首页htmlbox_sizingCSS Property Value - 如何box-sizing: border-box;

CSS Property Value - 如何box-sizing: border-box;

我们想知道如何box-sizing: border-box;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#wrapper {
  width: 60%;
  background-color: #aaa;
  margin: 50px auto;
  line-height: 0;
}

#wrapper img {
  width: 100%;
  border: 1px dashed red;
  box-sizing: border-box;
  margin
}
</style>
</head>
<body>
  <div id="wrapper">
    <img src="http://placehold.it/200x200" />
  </div>
</body>
</html>