I’ve got unordered-list.
- Home
- Blog
- About
- Contact
How i can set different width property for each child of ul, if there is no way to set class or id property for li?
Final result should be something like this:
/**52px**/ /**100px**//**92px**/ /**150px**/
Use CSS3 here is a good info about what you need :nth-child(). For fail safety, because not every browser supports CSS3, in addition you can assign id with a property to the elements of ul.