I have html like below
<span id="3072" style="position: relative; display: inline-block; width: 1898px; height: 194px; ">
<div style="visibility: visible; text-align: center; position: absolute; top: 90.5px; width: 1898px;">
<div style="font-family: Arial; font-size: 8.25pt; font-style: normal;>
</div>
</div>
</span>
here I want to change font-size:8.25pt
to 14pt
from the last div tag, how do I access contents of the last div tag using id from span tag.
I can easily change the contents of the 1st div tag something like below
document.getElementById("3072").firstChild.fontize="14px";
But in this case the Div tags doesn't have any classes or Id's to access them.
Anyone has any thoughts on this please share.
Image attached which shows the code of the html.
Thanks.