2016-03-02 170 views
-1
<ul> 
<li>(a) mines, quarries, and other works for the extraction of minerals from the earth;</li> 
<li>(b) industries in which articles are manufactured, altered, cleaned, repaired, ornamented, finished, adapted for sale, broken up or demolished, or in which materials are transformed; including shipbuilding and the generation, transformation and transmission of electricity or motive power of any kind;</li> 
<li>(c) construction, reconstruction, maintenance, repair, alteration, or demolition of any building, railway, tramway, harbour, dock, pier, canal, inland waterway, road, tunnel, bridge, viaduct, sewer, drain, well, telegraphic or telephonic installation, electrical undertaking, gas work, water work, or other work of construction, as well as the preparation for or laying the foundations of any such work or structure;</li> 
<li>(d) transport of passengers or goods by road, rail, or inland waterway, including the handling of goods at docks, quays, wharves or warehouses, but excluding transport by hand.</li> 
</ul> 

我有上面的HTMLCSS什么CSS编码可以在HTML之上添加,这将抑制由<li>标签生成的子弹点?如何在HTML列表中抑制项目符号点

+0

'UL {列表样式:无}的[极品没有任何子弹的无序列表]' – RRR

+3

可能的复制(HTTP:/ /stackoverflow.com/questions/1027354/need-an-unordered-list-without-any-bullets) –

+0

请参考这个问题上提到的答案:http://stackoverflow.com/a/1027367/2555668 –

回答

1

尝试在HTML以下,这将隐藏bullets<li>的:

<style> 
    ul { 
     list-style: none; 
    } 
</style> 
+0

我如何添加到HTML?我是CSS新手。 – CJ7

+0

这太棒了。谢谢你的帮助。 – CJ7

相关问题