JSFiddle - React, Tailwind, and code Playground

by jayakrishnancn

HTML

<div class="dets">
 <div>Simple Layout</div>
 <div>Few Pictures/Links</div>
 <div>Element Uniformity</div>
</div>
<div class="dets">
 <div>Simple Layout</div>
 <div>Few Pictures/Links</div>
 <div>Element Uniformity</div>
</div>

CSS

.dets div:odd{
  background: #000;
  color: #fff
}
.dets div:even{
  background: #fff;
  color: #000
}

JavaScript

$(".dets div:odd").css('background-color', 'white');
$(".dets div:even").css('background-color', 'black');