Closed. This question is
consider changing it into
<iframe name="sif1" sandbox="allow-forms allow-modals allow-scripts" class="snippet-box-edit snippet-box-result" frameborder="0"></iframe>
After changing this you will see the :before
as you expected
CodePudding user response:
After inspecting your css codes, found out that commenting broke the rules (line 2345 to 2447)
So after removing whole block, rules works
CodePudding user response:
To modify li
s appearance, you could use list-style-image
on your ul
element.:
.holder-features ul {
list-style-image: url("https://www.datanumen.com/temp/check.svg?");
}
<div class="tab-content holder-features selected"
data-tab="2">
<section class="wrapper">
<h2 style="text-align: center;">Main Features</h2>
<hr>
<ul>
<li>Support 32bit and 64bit.</li>
<li>Support for Windows 95/98/ME/NT/2000/XP/Visa/7/8/8.1/10 and Windows Server 2003/2008/2012/2016/2019.
Both
32bit and 64bit operating systems are supported.</li>
</ul>
<hr>
</section>
</div>
<iframe name="sif2" sandbox="allow-forms allow-modals allow-scripts" class="snippet-box-edit snippet-box-result" frameborder="0"></iframe>