JSFiddle - React, Tailwind, and code Playground
HTML
<div class="selector" style="110px;"></div>
CSS
.selector {
min-width: 100px;
width: 150px;
max-width: 200px;
}
JavaScript
$(document).ready(function(){
alert($('.selector').css('width'));
});