JSFiddle - React, Tailwind, and code Playground
by tebrown
HTML
<div class="map">
<div class="auk circle"></div>
<div class="tar circle"></div>
</div>
CSS
.map {
background: #ccc;
height:400px;
width:300px;
}
.circle {
height:10px;
width:10px;
background-color:red;
border-radius:5px;
}
.auk {
margin-left:50px;
}
.tar {
margin-left:50px;
margin-top: 100px;
}