码迷,mamicode.com
首页 > Web开发 > 详细

css实现斑马线效果

时间:2019-12-03 10:36:34      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:color   child   表格   pre   html   tab   ima   htm   斑马线   

文本实现斑马线效果

<style>
  p {
	font-size: 17px;
	line-height: 25px;
	background-color: antiquewhite;
	background-image: linear-gradient(#99999 50%, transparent 0);
	background-size: auto 50px;
	background-origin: content-box;
      }
</style>
<body>
  <p>咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕咕</p>
</body>

  表格实现斑马线效果

<style>
  tr{
	background: #ffffff;
	width: 1.25rem;
	height: 1.875rem;
    }
  tr:nth-child(2n) {
    background: #E9E9E9;
    }
</style>
<body>
  <table>
    <tr>
      <td>1</td><td>2</td><td>3</td><td>4</td>
    </tr>
    <tr>
      <td>1</td><td>2</td><td>3</td><td>4</td>
    </tr>
    <tr>
      <td>1</td><td>2</td><td>3</td><td>4</td>
    </tr>
  </table>
</body>

  

css实现斑马线效果

标签:color   child   表格   pre   html   tab   ima   htm   斑马线   

原文地址:https://www.cnblogs.com/pengxiangchong/p/11975180.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!