<!DOCTYPE html> <body onload="f()"> <p>First</p> <p> <style> p { color: green } </style> Second </p> <p>Third</p> <script> function f() { var style = document.getElementsByTagName("style")[0]; style.setAttribute("scoped", ""); } </script> </body>