Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<style>
.myStyle {
  background-color: coral;
  padding: 16px;
}
</style>
<body>
<h1>The Element Object</h1>
<h2>The className Property</h2>
<div id="myDIV" class="myStyle">
<p>I am myDIV.</p>
</div>
<p>The value of the class attribute of "myDIV" is:</p>
<p id="demo"></p>
<script>
let value = document.getElementById("myDIV").className;
document.getElementById("demo").innerHTML = value;
</script>
</body>
</html>