screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> </head> <body> <h3>Vue Js Scoped CSS</h3> <div id="app"> <div class="wrapper"> <p>Hello World</p> </div> </div> <style scoped> .wrapper { background-color: #ccc; padding: 20px; } p { color: red; } </style> </body> </html>