JSFiddle - React, Tailwind, and code Playground
by MItul Patel
HTML
<div class="subPage">1</div>
<div class="subPage">2</div>
<div class="subPage">3</div>
CSS
.subPage {
width: 50px;
height: 50px;
background: #DDD;
margin-right: 10px;
float: left;
text-align: center;
line-height: 50px;
font-family: Arial, sans-serif;
font-weight: bold;
color: #808080;
cursor: pointer;
}
.clear {
clear: both;
}
JavaScript
$('body').on('click', '.subPage', function() {
$(this).html('You clicked, and here i am, the content to box.');
});