JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
</head>
<body>
<div class="draggable resizable abc table shadow">ddd</div>
<div class="abc shadow">fff</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
</body>
</html>
JavaScript
jQuery(document).ready(function () {
$('div:not(.draggable), div:not(.resizable), div:not(.shadow)')
.css({'border':'2px solid red'});
});