JSFiddle - React, Tailwind, and code Playground

by Amar Nyayapati

HTML

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

  <div></div>

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

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

$("div").css("border", "2px solid black")
        .add("p")
        .css("background", "green");
</script>