How do I put an unordered list in the center of my html?
eg. <p align="center"><ul type="circle"> <li><a href=sample2.html>S2</a> <li><a href=sample3.html>S3</a> </ul> </p>
Public Comments
- Put the list in a table and center align that. It will move the unordered list to center. <table align="center"> <tr> <td> <p align="center"><ul type="circle"> <li><a href=sample2.html>S2</a> <li><a href=sample3.html>S3</a> </ul> </p> </td> </tr> </table>
Powered by Yahoo! Answers