JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<div class="container">
  <div class="striped-rows">
    <div class="row">
      <div class="col-xs-6">
        some text
      </div>
      <div class="col-xs-6">
        other text
      </div>
    </div>
    <div class="row">
      <div class="col-xs-6">
        some text
      </div>
      <div class="col-xs-6">
        other text
      </div>
    </div>
    <div class="row ">
      <div class="col-xs-6">
        some text
      </div>
      <div class="col-xs-6">
        other text
      </div>    
    </div>
  </div>
</div>

CSS

.striped-rows .row {
  border-bottom: 1px solid red;
}

.striped-rows .row:nth-of-type(odd) {
  background: gray;
}