首页htmlalignCSS Layout - 如何默认情况下向左对齐

CSS Layout - 如何默认情况下向左对齐

我们想知道如何默认情况下向左对齐。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#content {
  width: 780px;
  padding: 10px;
  position: relative;
  background: #8b847d;
}

#leftcol {
  width: 500px;
  background: red;
}
</style>
</head>
<body>
  <div id="content">
    <div id="leftcol">
      <p>Lorem Ipsum</p>
    </div>
  </div>
</body>
</html>