JSFiddle - React, Tailwind, and code Playground

by hicurin

HTML

<div class="element  metal cesco1 " >
<span>
<a class="fancybox" href="fotos/full/full01.png" >
<img src="fotos/thumbs/thumb01.png"/>
</a>
</span>
</div>

<div class="element  metal cesco1 ">
<span>
<a class="fancybox" href="fotos/full/full03.png">
<img src="fotos/thumbs/thumb03.png"/>
</a>
</span>
</div>

JavaScript

$(function(){
        $('.cesco1').each(function() {
          var width = 0;
          $(this).children('img').each(function()( 
              width += $(this).outerWidth( true );
          }
          $(this).css('width', width);
        });
    });