Guest User

Untitled

a guest
Jun 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // I need to set the width of the DIV tag...
  2. // ...equal to 120px times the number of LI's within the child UL
  3.  
  4. <div> <!-- width of this... -->
  5. <ul>
  6. <li>1</li> <!-- equal to the number of these times 120px -->
  7. <li>2</li>
  8. <li>3</li>
  9. </ul>
  10. </div>
Add Comment
Please, Sign In to add comment