css 斑马条纹文本行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 斑马条纹文本行相关的知识,希望对你有一定的参考价值。
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
// alert('Hello world!');
<pre><code>while (true) {
var d = new Date();
if (d.getDate()==1 &&
d.getMonth()==3) {
alert("TROLOLOL");
}
}</code></pre>
/**
* Zebra striped text lines
*/
pre {
padding: .5em;
line-height: 1.5;
background: hsl(20, 50%, 95%);
background-image: linear-gradient(
rgba(120,0,0,.1) 50%, transparent 0);
background-size: auto 3em;
background-origin: content-box;
font-family: Consolas, Monaco, monospace;
}
code { font: inherit }
以上是关于css 斑马条纹文本行的主要内容,如果未能解决你的问题,请参考以下文章
json 斑马条纹文本行
使用 CSS 的斑马条纹 [重复]
table给table表格设置一个通用的css3样式(默认有斑马条纹)
使用jQuery替换行颜色/斑马条纹
带有jQuery的表的斑马条纹(简单方法)
如何在 R 中的数据表 DT 中添加行边框和斑马条纹(行条纹)?