JSFiddle - React, Tailwind, and code Playground

HTML

<div cols=5>
    <p>Love for all, Hatred for none!</p>
</div>

CSS

div {
    width: 500px;
}

p {
    width: attr(cols);
}

JavaScript

$('div').append($('div').attr('cols'));