<!DOCTYPE html>
<html>
<style>
div {
  width: 100px;
  height: 100px;
  background-color: blue;
}
#child {
  background-color: green;
  width: 50px;
  height: 50px;
}
</style>
<div>
  <div id="child"></div>
</div>
</html>