Home >Web Front-end >HTML Tutorial >css如何将新闻列表前面的点去掉_html/css_WEB-ITnose

css如何将新闻列表前面的点去掉_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:28:321334browse

css如何将新闻列表前面的点去掉:
制作新闻列表通常使用li元素,但是在默认情况li元素前面有黑色的原点,有些人可能感觉还不错,但是一般有更多的人认为这是比较丑陋的效果,下面就介绍一下如何去掉前面默认的小点。

<!DOCTYPE html><html><head><meta charset=" utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css">ul,li{  list-style:none;  font-size:12px;}li{  width:250px;  height:25px;  line-height:25px;}</style></head><body><ul class="mytest">  <li>俄罗斯爆发陨石雨,导致上千人受伤</li>  <li>朝鲜成功进行核试验,半岛无核进程终结</li>  <li>中国进入春运高峰期</li></ul></body></html>

上面的代码实现我们的要求,只要在ul或者li上添加如下代码即可:

list-style:none

在实际应用中可能需要再新闻列表前面添加图标以增加美观度,具体可以参阅css设置li列表前小图标代码实例一章节

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=15457

更多内容可以参阅:http://www.softwhy.com/divcss/

  

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn