This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
Am I right in thinking that certain elements have default styling applied to them, defined outside of the developer's control? From Chrome's developer console, it looks like li elements have list-style:none and font-size:12px applied to them, but I've definitely not set these properties.
Assuming this is the case, is there any reason for this? It's slightly annoying that when I set the font-size of the body, li elements aren't affected because of the more specific selector. Can I change this behaviour?
Thank you.
Solved! Go to Solution.
You may use JavaScript to disable the style sheet.
let styleSheets = document.getElementsByTagName("link");
for (let i = 0; i < styleSheets.length; i++) {
styleSheets[i].disabled = true;
}
You may use JavaScript to disable the style sheet.
let styleSheets = document.getElementsByTagName("link");
for (let i = 0; i < styleSheets.length; i++) {
styleSheets[i].disabled = true;
}
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |