看板 Web_Design 關於我們 聯絡資訊
我想在超連結文字外面加上邊框 可是他的編框大小就只跟著字體大小改變 用width & hight都沒有改變 是我哪裡寫錯嗎?還是該怎麼用比較好 我想做的功能是像這樣http://mischievousmeg.com/ 他上面的item選項 以下是我的語言 <style type="text/css"> <!-- .s1{font-size:14px; font-family:Arial, Helvetica, sans-serif; text-decoration:none; color:#FFFFFF; height:50px; width:80px; border-left: 0px; border-right:0px; border-top:0px; border-bottom:0px; padding-bottom:5px; padding-left:15px; padding-right:15px; padding-top:5px; background-color:#999999 } .s1:hover{ font-size:14px; font-family:Arial, Helvetica, sans-serif; text-decoration:none; color:#ffff00; height:50px; width:80px; border-bottom:0px; border-left:0px; border-top:0px; border-right:0px; padding-bottom:5px; padding-left:15px; padding-right:15px; padding-top:5px; background-color:#009900 } --> </style> </head> <body> <a class="s1" href="#">123 </a> <p>&nbsp;</p> </body> </html> 謝謝各方高手!! -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 61.228.26.90
Kelunyang:或許補充一個你已經知道的事情,就是hover只有IE7和FF2 12/15 00:06
Kelunyang:看的到,其他如IE6 都是看不到的,你用在a用a:hover就好 12/15 00:06