JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<table class="cart" width=700px cellpadding="0" cellspacing="0" style="border: 1px;" rules="none" align="center">
    <tr height=40px align="center">
        <td>Product</td>
        <td>Price</td>
        <td></td>
        <td>Quantity</td>
        <td></td>
        <td>Delete</td>
    </tr>
    <tr height=40px align="center">
                <td>'.$ResAssoc['descricao'].'</td>
                <td>'.number_format($ResAssoc['preco'],2,",",".").'€</td>
                <td>-</td>
                <td>'.$Quantidade.'</td>
                <td><a href="#?more=true&par='.$Prod.'>+</a></td>
                <td><a href="index.php?del='.$ResAssoc['id'].'#carrinho" style="text-decoration:none; color:black;">x</a></td>
                </tr>