Source Code:
(back to article)
Submit
Result:
Report an issue
<style> #myParagraph { padding: 5px; width: 200px; text-align: center; } </style> <div id="myParagraph">Another paragraph.</div> <script> document.getElementById("myParagraph").style.cssText = "background-color: blue; font-size: 16px; border: 1px solid black"; </script>