JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<style>
div,dive,span {
width: 60px;
height: 60px;
float:left;
padding: 10px;
margin: 10px;
background-color: #EEEEEE;
}
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<dive>DIV1</dive>
<div>DIV2</div>
<span>SPAN</span>
<script>$("div").css("border","15px solid blue");</script>
</body>
</html>