InterviewSolution
| 1. |
What Is Shadow Dom Styling? |
|
Answer» It is a process of styling shadow DOM by using style properties. It inherits properties from host to shadow TREE. Let's see an example. Shadow DOM Style Example: my DEMO {background-color:grey;} </style> <my-element> #shadow-root <style> //this DIV will have blue background color div { background-color: orange; } </style> <div class="mydemo">Demo</div> It is a process of styling shadow DOM by using style properties. It inherits properties from host to shadow tree. Let's see an example. Shadow DOM Style Example: my demo {background-color:grey;} </style> <my-element> #shadow-root <style> //this div will have blue background color div { background-color: orange; } </style> <div class="mydemo">Demo</div> |
|