CSS問題@@ - 部落格

Table of Contents

假設我有一組 radio buttons 長這樣:

○徵求 ○問安 ○生日 ○幫忙 ○揪團 ○問題 ○牛願 ○公告

部分程式碼如下:

<fieldset>
<label class="lab"><input type="radio" name="radio" />徵求</label>
<label class="lab"><input type="radio" name="radio" />問安</label>
<label class="lab"><input type="radio" name="radio" />生日</label>
<label class="lab"><input type="radio" name="radio" />幫忙</label>
<label class="lab"><input type="radio" name="radio" />揪團</label>
<label class="lab"><input type="radio" name="radio" />問題</label>
<label class="lab"><input type="radio" name="radio" />牛願</label>
<label class="lab"><input type="radio" name="radio" />公告</label>
</fieldset>

請問我 css 要怎麼寫,才能讓這組 radio buttons 變這樣:

○ ○ ○ ○ ○ ○ ○ ○
徵 問 生 幫 揪 問 牛 公
求 安 日 忙 團 題 願 告

我嘗試過 writing-mode: tb-rl; 了,
可是 mozilla firefox 跟 google chrome 無效……
設定 weight 也不行~@@

--
Eloisa to Abelard
by Alexander Pope
How happy is the blameless vestal's lot!
The world forgetting, by the world forgot.
Eternal sunshine of the spotless mind!
Each pray'r accepted, and each wish resign'd;

--

All Comments

Ursula avatarUrsula2009-01-05
親愛的, 你可以 ○歸○, 字歸字, 分開寫啊~
Hardy avatarHardy2009-01-06
被叫親愛的好害羞~。///。
Irma avatarIrma2009-01-09
自問自答 display: inline-block 然後設定適當的 width 就可以