x
 
<!DOCTYPE html>
<html>
<head>
<style> 
#myDIV {
  border: 1px solid black;
  background-color: lightblue;
  width: 300px;
  height: 300px;
  position: relative;
  top: 20px;
}
</style>
</head>
<body>
<p>点击“试一试”按钮可更改 DIV 元素的 position 属性:</p>
<button onclick="myFunction()">试一试</button>
<div id="myDIV">
  <p>此 DIV 元素放置在距其原始位置顶部 20 像素的位置。</p>
  <p>请点击按钮将 position 属性设置为 “absolute”,看看会发生什么。</p>
  <p>然后它将被放置在距页面顶部 20 像素的位置。</p>
</div>
<script>
function myFunction() {
  document.getElementById("myDIV").style.position = "absolute";
}
</script>
</body>
</html>