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.
views:
16answers:
1
A:
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"});
});
Louis
2010-10-23 05:09:14