看板 Web_Design 關於我們 聯絡資訊
※ 引述《Grace5051 (愛哭鬼)》之銘言: : 我在html裡面 : 定義了兩種的select class : <select class="t1"> : <option value="aaa"> : <option value="bbb"> : </select> : <select class="t2"> : <option value="ccc"> : <option value="ddd"> : </select> : 然後我在css內 : select, t1{width:21em;} : select, t2{width:31em;} : 可是卻只讀到31em的寬度 : 為什麼呢 要怎麼樣才可以有兩種不同的寬 select, t1 這樣會變成選擇select元件和t1元件(元件、標籤、物件...etc) 選擇class要用 . 例如 .t1 就是class有t1的元件 select.t1 才是有t1這個class name的select元件 所以你可能是改成 select.t1 {width: 21em;} select.t2 {width: 31em;} 或是就用 .t1 {width: 21em;} .t2 {width: 31em;} -- FrontPage is not a visual web editor. It is an IE page editor. From "designing with web standards" by jeffery zeldman -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.118.5.39