首页htmlaHTML Element Style - 如何单击滚动到中心内容

HTML Element Style - 如何单击滚动到中心内容

我们想知道如何单击滚动到中心内容。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {
  width: 200%;
}

#p1, #p2 {
  width: 50%;
  float: left;
}

#p1 {
  text-align: left;
}

#p2 {
  text-align: center;
}
</style>
</head>
<body>
  <div id="container">
    <div id="p1">
      <a href="#p2">Typefaces</a>
    </div>
    <div id="p2">This is a test</div>
  </div>
</body>
</html>