目标:
css中after伪类,last-child伪类的使用。以及部分css3的属性。
过程:
在制作导航时,经常会遇到在每一个li后面添加一个分割符号,到最后一个元素的时候,分割符就会去掉的一种效果。
如图
那么制作这样的一个效果,怎么用纯css很简单的完成了。这里用到了css的伪类。
html部分
Home
About Me
Portfoli...
分类:
Web程序 时间:
2014-11-20 23:48:43
阅读次数:
271
ViewPager 报错:Caused by: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first....
分类:
编程语言 时间:
2014-11-19 18:47:17
阅读次数:
149
报错信息为:java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.首先,如果你看到这篇文章,说...
分类:
其他好文 时间:
2014-11-19 18:34:29
阅读次数:
119
介绍在前一篇中我们组合了已经学过的事件冒泡 event bubbling, 日志记录 logging, 和父子模型 Parent-Child pattern 建立了自定义的SSIS包日志记录.本文中, 我们会将我们的解决方案升级至 SQL Server 2012 Integration Servic...
分类:
其他好文 时间:
2014-11-19 13:58:40
阅读次数:
426
描述When Teddy was a child , he was always thinking about some simple math problems ,such as “What it’s 1 cup of water plus 1 pile of dough ..” , “100 y...
分类:
其他好文 时间:
2014-11-15 06:32:43
阅读次数:
127
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:
其他好文 时间:
2014-11-14 22:30:00
阅读次数:
328
第一步: 建立多个属性页,可以添加对话框资源,然后修改对话框资源的属性,在vs2010中,修改如下3个:Style设置为child;Border设置为Thin;System menu设置为fasul;Title Bar为true(默认即为true);修改Caption:为此属性页选项卡的名称;第二....
分类:
编程语言 时间:
2014-11-13 23:58:55
阅读次数:
1074
c++ 虚析构函数:虚析构函数(1)虚析构函数即:定义声明析构函数前加virtual 修饰, 如果将基类的析构函数声明为虚析构函数时,由该基类所派生的所有派生类的析构函数也都自动成为虚析构函数。(2)基类指针pbase 指向用new动态创建的派生类对象child时,用“delete pbase;”删...
分类:
编程语言 时间:
2014-11-13 18:49:18
阅读次数:
217
python中多进程与Linux 下的C基本相同。 fork的基本使用 先看最简单的例子: # coding: utf-8
import os def my_fork(): pid = os.fork() if pid == 0: print 'this is child, pid = %d, pa...
分类:
编程语言 时间:
2014-11-12 22:58:05
阅读次数:
300
用户、流量啥的都不大, fpm进程参数如下: pm.max_children = 100 pm.start_servers =80 pm.min_spare_servers = 20 日志如下,从启用开始就报的错 [31-Jul-2014 18:49:14] NOTICE: [pool www] child 26462 star...
分类:
Web程序 时间:
2014-11-11 19:24:49
阅读次数:
287