如何选中多个相同标签的奇数行或者偶数行

在伪类方法里面,有一个:nth-child()的方法,当()里面的参数为2n的时候表示偶数行,当()里面的参数为2n+1或者2n-1的时候表示奇数行

后面的参数为数字的时候,表示的选择的哪一行

实例:

<div id="myDiv">    <div>123</div>    <div>123</div>    <div>123</div>    <div>123</div>    <div>123</div>    <div>123</div>    <div>123</div></div>

css:
#myDiv :nth-child(2n) {    background-color: red;}#myDiv :nth-child(2n+1) {    background-color: yellow;}#myDiv :nth-child(1){    background-color: green;}

效果:

				
时间: 2024-10-08 21:32:26

如何选中多个相同标签的奇数行或者偶数行的相关文章

用awk、sed打印奇数行或偶数行

这里只介绍最简单的方法 sed实现一:奇数行 sed -n 'p;n' file偶数行 sed -n 'n;p' file 这个可能比较难理解,举个网上的例子: 例,从aaa文件中取出偶数行cat aaa This is 1    This is 2    This is 3    This is 4    This is 5 sed -n 'n;p' aaa         //-n表示取消默认输出 This is 2    This is 4 注 释:sed读取This is 1,执行n命令

shell脚本,实现奇数行等于偶数行。

请把如下字符串stu494e222fstu495bedf3stu49692236stu49749b91转为如下形式:stu494=e222fstu495=bedf3stu496=92236stu497=49b91 利用AWK来实现 通过shell脚本来实现

shell脚本,awk取奇数行与偶数行方法。

第一种方法: 第二种方法: 第三种方法:

老男孩教育每日一题-2017年3月25日-将一个文本的奇数行和偶数行合并

[[email protected] ~]# cat oldboy.txt 48 Oct 3bc1997 lpas 68.00 lvx2a 138 484 Jan 380sdf1 usp 78.00 deiv 344 483 nov 7pl1998 usp 37.00 kvm9d 644 320 aug der9393 psh 83.00 wiel 293 231 jul sdf9dsf sdfs 99.00 werl 223 230 nov 19dfd9d abd 87.00 sdiv 230

【算法】 调整数组顺序,使得奇数在前偶数在后,分别保证奇数和偶数之间的相对位置不变

题目:输入一个整形数组,将数组重新排序,使得所有奇数在前偶数在后,并使奇数之间和偶数之间的相对位置爆出不变. 思想:从数组开头开始遍历所有数组.当碰到偶数时,将偶数打包,即记录到目前为止偶数的个数,把这些偶数看成一个整体:当碰到奇数时,将这个奇数与前面的偶数整体对调位置. #include <stdio.h> #include <stdlib.h> void nuo(int *a,int j,int nu)                     //将奇数与前面所有偶数调换位置

案例:把分拣奇偶数的程序用泛型实现。int[] nums={1,2,3,4,5,6,7,8,9};奇数在左边 偶数在右边

//案例:把分拣奇偶数的程序用泛型实现.int[] nums={1,2,3,4,5,6,7,8,9};奇数在左边 偶数在右边 int[] nums = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; List<int> listJi = new List<int>(); List<int> listOu = new List<int>(); for (int i = 0; i < nums.Length; i++) { if (nums[

awk按照奇数行和偶数行进行处理

取奇数行 awk 'NR%2' file MR是行号,行号对2取模,奇数的结果为1,所以打印 如果还不懂看这个你就懂了 awk '{if (NR%2==1) print $0}'  file 原文:http://blog.csdn.net/hongchangfirst/article/details/25110611 作者:hongchangfirst hongchangfirst的主页:http://blog.csdn.net/hongchangfirst awk按照奇数行和偶数行进行处理

linux(39):shell 打印偶数行,奇数行 ,行号

awk 命令: 1. 打印行号和内容: awk '{print NR":"$0}' 2. 输出:偶数行和奇数行到文件 awk '{print $0.txt > NR%2.txt}'  file 3. 打印出奇数行内容:(三者等价) awk 'NR%2==1' file awk 'NR%2' all_file.txt awk 'i=!i' file 打印出偶数行的内容:(三者等价) awk 'NR%2==0' file awk '!(NR%2)' file awk '!(i=!i)

Winform读取文档。然后创建,奇数行保存一个文档,偶数行保存一个文档

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;using System.Text.RegularExpressions; namespace TextModify