Javascript DOM CSS Style paddingTop Property compare to marginTop

Introduction

Difference between marginTop and paddingTop:

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
div {//from  w w  w.  j av a2s . c o  m
  border: 1px solid #FF0000;
}
</style>
</head>
<body>

<div id="myDiv">This is some text.</div>
<br>
<button type="button" onclick="changeMargin()">Change top margin of the div element</button>
<br>
<br>

<div id="myDiv2">This is some text.</div>
<br>
<button type="button" onclick="changePadding()">Change top padding of the div element</button>

<script>
function changeMargin() {
  document.getElementById("myDiv").style.marginTop = "100px";
}

function changePadding() {
  document.getElementById("myDiv2").style.paddingTop = "100px";
}
</script>

</body>
</html>



PreviousNext

Related