button控件是asp.net下常用的控件之一,平常經常需要使用各種帶背景圖片的按鈕,用Imagebutton吧,又沒用Text屬性 ,不夠通用,每次都得用ps做,麻煩,而button卻沒有設置背景圖片的屬性......怎么就不能有個完美的呢,
難道只能寫用戶控件?
不,用css完全可以實現.方法也很簡單
先在head中寫樣式類 .button
<style type="text/css">
.button { .button{ width:56px; /*圖片寬度*/ background:url(btn2.jpg) no-repeat left top; /* 圖片路徑*/ border:none; /*去掉邊框*/ height:21px; /*圖片高度*/ } } </style>然后引用時,設者button控件的CssClass屬性為button OK變漂亮了吧?呵呵.
本文來自CSDN博客,轉載請標明出處:http://blog.csdn.net/greenerycn/archive/2007/07/09/1683916.aspx |
|