HTML Element Style How to - Click to Scroll To centered content








Question

We would like to know how to click to Scroll To centered content.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#container {<!--from  ww w .j a  va 2s. c o m-->
  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>

The code above is rendered as follows: