How to display an unordered list in two columns?
With the following HTML, what is the easiest method to display the list as two columns? <ul> <li>A</li> <li>B</li> <li>C</li> <li>D</li> <li>E</li> </ul> … Read more
With the following HTML, what is the easiest method to display the list as two columns? <ul> <li>A</li> <li>B</li> <li>C</li> <li>D</li> <li>E</li> </ul> … Read more
Consider the following HTML: <div class=”x”> <ul> <li>Number one</li> <li>Number two</li> <li>Number three</li> <li>Number four is a bit longer</li> <li>Number five</li> </ul> </div> … Read more