JSFiddle - React, Tailwind, and code Playground

by Amar Nyayapati

HTML

<style>
 div { width:60px; height:60px; margin:10px; float:left;border:1px solid black;}
 p {  clear:left;font-weight:bold; font-size:16px; 
     color:blue; margin:0 10px; padding:2px; }
 </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>

<body>
  <div></div>

  <div></div>
  <div></div>
  <div></div>
  <div></div>
  <div></div>

  <p>Added this... (notice no border)</p>
<script>

$("div").add("p");
        
</script>