Javascript DOM CSS Style paddingBottom Property get

Introduction

Return the bottom padding of a <div> element:

alert(document.getElementById("myDiv").style.paddingBottom);

View in separate window

<!DOCTYPE html>
<html>
<head>
<style>
#myDiv {// w  w w. j  av  a 2 s  .  c  o m
  border: 1px solid #FF0000;
}
</style>
</head>
<body>

<div id="myDiv" style="padding-bottom:5cm;">This is a div.</div>
<br>
<button type="button" onclick="myFunction()">Return bottom padding</button>

<p id="demo"></p>
<script>
function myFunction() {
  document.getElementById("demo").innerHTML = document.getElementById("myDiv").style.paddingBottom;
}
</script>

</body>
</html>



PreviousNext

Related