I am facing an issue in my CSS file where I need to target the ul tag inside a popover. I attempted to do this by using the code .myClass ul {list-style: none;}, but unfortunately, it did not work as expected. When I tried using .popover ul {...}, it did work, however, I prefer having different styles for different classes. How can I specifically select the ul tag inside a bootstrap popover for a specific class? The code snippet for my popover is as follows:
<span class="myClass" data-html="true" data-toggle="popover" title="myTitle" data-content="<ul><li>This is a test</li></ul>">myPopover</span>
Is giving the ul tag a class the only way to achieve this?