我有一堆 trac sites 的 links 要列表,之前是直接 <ul><li> 就給它列下去,可是後來 projects 一多,畫面就必須要捲動,很難用。所以需要尋找 CSS 機制,讓這些 projects 的 links 能夠像 ls 一樣,分欄顯示:

最後的寫法如下:

#thelist ul
{
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#thelist ul li
{
    float: left;
    width: 6.5em;
    margin: 0;
    padding: 0;
}

#thelist ul li a
{
    text-decoration: none;
}

#thelist ul li a:hover
{
    text-decoration: underline;
}