css3选择器怎么用
今天小编给大家分享一下css3选择器怎么用的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
创新互联建站于2013年创立,是专业互联网技术服务公司,拥有项目网站建设、网站制作网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元扎鲁特旗做网站,已为上家服务,为扎鲁特旗各地企业和个人服务,联系电话:18980820575
代码如下:
*{padding:0;margin:0;}
ul
{
display:inline-block;
width:200px;
list-style-type:none;
}
ulli
{
height:20px;
}
ulli:first-child{background-color:red;}
ulli:nth-child(2){background-color:orange;}
ulli:nth-child(3){background-color:yellow;}
ulli:nth-child(4){background-color:green;}
ulli:last-child{background-color:blue;}