modulerizr
Version:
Integrate a powerful, component based architecture to your legacy project in just a few steps
22 lines (18 loc) • 412 B
HTML
<html lang="en">
<head>
<title>Scope Styles</title>
</head>
<body>
<!--
In this example we have scoped styles.
With scoped styles they don't affect other components - neither child-components.
-->
<style>
.styleFromSrc {
color: blue;
}
</style>
<scoped-styles-1></scoped-styles-1>
<scoped-styles-2></scoped-styles-2>
</body>
</html>