JSFiddle - React, Tailwind, and code Playground

by rami7250

HTML

<p class="title">Our Favorits</p>

        <div class="Cell">
        <p>
    <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&pub=5575165347&toolid=10001&campid=5337851510&customid=&mpre=http%3A%2F%2Fwww.ebay.com%2Fsch%2Fi.html%3F_from%3DR40%26_sacat%3D0%26_nkw%3Dgeforce%2520gtx%25201080%26_sop%3D15%26_clu%3D2%26_fcid%3D1%26_localstpos%3D11213%26_stpos%3D11213%26gbr%3D1%26_zpclkd%3D1">
         
         <img class="product" src="http://i.ebayimg.com/images/g/dNMAAOSwa81XSHoW/s-l1600.jpg">
 <p class="descrip">EVGA NVIDIA GeForce GTX 1080 Founder's edition BRAND NEW</p>
<br>
<a class="price" href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&pub=5575165347&toolid=10001&campid=5337851510&customid=&mpre=http%3A%2F%2Fwww.ebay.com%2Fsch%2Fi.html%3F_from%3DR40%26_sacat%3D0%26_nkw%3Dgeforce%2520gtx%25201080%26_sop%3D15%26_clu%3D2%26_fcid%3D1%26_localstpos%3D11213%26_stpos%3D11213%26gbr%3D1%26_zpclkd%3D1">US $739.99</a>

 <a class="btn" href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?ff3=4&pub=5575165347&toolid=10001&campid=5337851510&customid=&mpre=http%3A%2F%2Fwww.ebay.com%2Fsch%2Fi.html%3F_from%3DR40%26_sacat%3D0%26_nkw%3Dgeforce%2520gtx%25201080%26_sop%3D15%26_clu%3D2%26_fcid%3D1%26_localstpos%3D11213%26_stpos%3D11213%26gbr%3D1%26_zpclkd%3D1">Buy Now</a> 
</a>
        </div>
              
        <div class="Cell">
        <p>
    <a href="http://rover.ebay.com/rover/1/711-53200-19255-0/1?icep_ff3=9&pub=5575165347&toolid=10001&campid=5337851510&customid=&icep_uq=samsung+950+pro&icep_sellerId=&icep_ex_kw=&icep_sortBy=12&icep_catId=58058&icep_minPrice=&icep_maxPrice=&ipn=psmain&icep_vectorid=229466&kwid=902099&mtid=824&kw=lg">
         
         <img class="product" src="http://i.ebayimg.com/images/g/llkAAOSw5dNWshpH/s-l1600.jpg">
 <p>Samsung SSD 950 PRO M.2 256GB Solid State Drive</p>
<br>
<a class="price"...

CSS

.btn {
  float:right;
  margin-top:-10px;
  background: #0077bb;
  background-image: -webkit-linear-gradient(top, #0077bb, #00509d);
  background-image: -moz-linear-gradient(top, #0077bb, #00509d);
  background-image: -ms-linear-gradient(top, #0077bb, #00509d);
  background-image: -o-linear-gradient(top, #0077bb, #00509d);
  background-image: linear-gradient(to bottom, #0077bb, #00509d);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: white;
  font-size: 14px;
  padding: 6px 19px 7px 20px;
  text-decoration: none;
  font-weight:bold;
}

.btn:hover {
  float:right;
  background: #00509d;
  background-image: -webkit-linear-gradient(top, #00509d, #00509d);
  background-image: -moz-linear-gradient(top, #00509d, #00509d);
  background-image: -ms-linear-gradient(top, #00509d, #00509d);
  background-image: -o-linear-gradient(top, #00509d, #00509d);
  background-image: linear-gradient(to bottom, #00509d, #00509d);
  text-decoration: none;
  font-weight:bold;
}

.title {font-weight: bold;text-align:center; font-size:18px;}

img.product {
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 7px;
    width:250px;
    hieght:250px;
    }
    

.price
{font-weight: bold; color:black; text-decoration: none;}

.Cell 
{width:250px;display:inline-block; padding-left:40px;}