Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p id="myP" style="border:2px dashed green;color:red;">This is a paragraph.</p>
<button type="button" onclick="myFunction()">Return the style declaration as a string</button>
<script>
function myFunction() {
  alert(document.getElementById("myP").style.cssText);
}
</script>
</body>
</html>