Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 CSS 删除每个字段之前的点?我似乎找不到这样做的能力。谢谢!
http://www.inksharks.com/kbca-registration/
每个li元素都添加了一个背景图像。您必须通过添加以下 CSS 来删除它
li
ul > li, .dark-icons ul > li { background-image: none; }
你可以试试
.gform_body ul li{list-style:none;}
如果上面的代码不起作用,那么 .gform_body ul li{list-style:none !important;}
.gform_body ul li{list-style:none !important;}