JSFiddle - React, Tailwind, and code Playground
by joplomacedo
HTML
<div class="el"></div>
CSS
.el {
float: left;
width: 50px;
height: 50px;
background-color: silver;
}
JavaScript
(function($) {
var $el = $('.el');
$.each($el, function() {
$this = $(this);
if ($this.css('float') === 'left') {
$this.css({
'margin-left': '50px'
});
}
});
})(jQuery);