JSFiddle - React, Tailwind, and code Playground

by rluuan

HTML

<span>
  <div>r</div>
  <div>s</div>
  <div>l</div>
</span>

CSS

span > div + div {
  background: red;
  width: 200px;
  height: 200px;
  margin-top: 10px;
}

JavaScript

$(document).ready (function() {
  $('.Delivery_ContentListDelivery').parents('.nbs-modal-content').children('div').css({'min-height': '40px', 'max-height': '150px', 'background': 'red'});
});