首页htmlchildren_parentCSS Layout - 如何center div inside parent div

CSS Layout - 如何center div inside parent div

我们想知道如何center div inside parent div。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#bg {
  background-color: red;
}

#content {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  left: 0px;
  top: 0px;
  width: 200px;
  background-color: #EEE;
}
</style>
</head>
<body>
  <div id="bg">
    <div id="content">Here is my content.</div>
  </div>
</body>
</html>