I have declared it like this, and the width of the <img> inside the <li> tag is 415.13. There are 13 <li> elements. However, sly set the width of the <ul> tag to 5395px, and there is an issue where the last <li> goes below the first <li>. I think the width of the <ul> should be larger than 5396.69. Could it be that I am mishandling the CSS?
I have declared it like this, and the width of the
<img>
inside the<li>
tag is 415.13. There are 13<li>
elements. However, sly set the width of the<ul>
tag to 5395px, and there is an issue where the last<li>
goes below the first<li>
. I think the width of the<ul>
should be larger than 5396.69. Could it be that I am mishandling the CSS?document.getElementsByClassName("adotRewordclearfix")[0].style.width = "5397px";
Even if I modify it like this after the jQuery declaration is finished, it doesn't change. Is there any solution?