JSFiddle - React, Tailwind, and code Playground

by MadhawaMB

HTML

<table class="table">
    <tr>
        <th>
            First Name
        </th>
        <th>
            Last Name
        </th>
        <th>
            
        </th>
        <th>Edit</th>
    </tr>


  
        <tr>
            <td>
              jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj   jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj   jgfjfgj jjjjjjjjjjjjjjjjjjjjjjjjjj
            </td>
            <td>
              jgfjjjjjjjjjjjjjjjjjjj
            </td>
            <td>
            fgjfjjjjjjjjjjjjjjjjj
            </td>
            <td>
               gjj jjjjjjjjjjjjjjjjjjjjjjjjjj
            </td>
        </tr>
    

</table>

CSS

@media 
	only screen and (max-width: 560px),
	(min-device-width: 768px) and (max-device-width: 1024px)  {
	
		/* Force table to not be like tables anymore */
		table, thead, tbody, th, td, tr { 
			display: block;  width:250px;
 		}
		
		/* Hide table headers (but not display: none;, for accessibility) */
		thead tr { 
			position: absolute;
			top: -9999px;
			left:-9999px; 
		}
		
		tr { margin-left:4px; }
       
		
	
		/*
		Label the data
		*/
		td:nth-of-type(1):before { content: ""; }
		td:nth-of-type(2):before { content: ""; }
		td:nth-of-type(3):before { content: ""; }
		td:nth-of-type(4):before { content: ""; }
		td:nth-of-type(5):before { content: ""; }
		
		}

   /* Smartphones (portrait and landscape) ----------- */
	@media only screen
	and (min-device-width : 320px)
	and (max-device-width : 480px) {
		body { 
			padding: 0; 
			margin: 0; 
			width: 320px;  }
		}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
		body { 
			width: 495px; 
		}
	}tr:nth-of-type(odd) { 
		background:#eee;
	}
	th { 
		background: #333; 
		color: white; 
		font-weight: bold; 
	}
	 th{ 
		padding: 5px;
		border: 1px solid #ccc; 
		text-align: left;
	}
td {
    border: 1px solid #cccccc;
    min-height:3px;box-sizing:border-box
    text-align: left;
}

    Edit { color:black;}