Question

Is there an easy way to determine the width of a block element if it were to be inline? I can't make the elements inline so I need some way to determine how wide it should be and then modify the width.

Was it helpful?

Solution

I seem to have done it with the help of polyhedron. Here is the code if someone finds it on Google.

$("h1").each(function() {
    $(this).css("display","inline").css({width: $(this).width(), display: "block"});
});
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top