主頁 > 知識庫 > Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕

Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕

熱門標(biāo)簽:地圖標(biāo)注地點(diǎn)下載 周口導(dǎo)航地圖標(biāo)注 商丘電話自動外呼系統(tǒng)怎么收費(fèi) 400電話是在哪里申請 昌邑外呼系統(tǒng) 默納克系統(tǒng)外呼顯示inns 400電話辦理尚景 東莞人工外呼系統(tǒng)多少錢 朝陽自動外呼系統(tǒng)

本文總結(jié)一下一些基礎(chǔ)頁面元素的實(shí)現(xiàn)方式,后續(xù)陸續(xù)更新。首先我們遇到最多的可能是按鈕的切圖,按鈕可能有很多種外觀,但是一般可分為純文字的和帶圖標(biāo)的按鈕,下面就來說說這兩種按鈕的實(shí)現(xiàn)方法。效果圖如下:

代碼如下:

XML/HTML Code復(fù)制內(nèi)容到剪貼板
  1. </pre><pre name="code" class="html"><!DOCTYPE html>     
  2. <html lang="zh-CN">     
  3. <head>     
  4.   <title>按鈕寫法</title>     
  5.   <meta charset="UTF-8">     
  6.   <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">     
  7.   <link rel="stylesheet" href="css/style.css">     
  8. <style type="text/css">     
  9.   a:hover{text-decoration: none;}     
  10.   .btn{     
  11.     display: inline-block;     
  12.     margin-top: 10px;     
  13.     padding: 10px 24px;     
  14.     border-radius: 4px;     
  15.     background-color: #63b7ff;     
  16.     color: #fff;     
  17.     cursor: pointer;     
  18.   }     
  19.   .btn:hover{     
  20.     background-color: #99c6ff;     
  21.   }     
  22.   .inbtn{     
  23.     border: none;     
  24.   }     
  25.   .bubtn{     
  26.     border: none;     
  27.   }     
  28.   .btn{     
  29.     font-style: normal;     
  30.   }     
  31.   .bgbtn span{     
  32.     margin-left: 10px;     
  33.     padding-left: 20px;     
  34.     background: url(images/edit.png) left center no-repeat;     
  35.   }     
  36.   .bgbtn02 img{     
  37.     margin-bottom: -3px;     
  38.     margin-right: 10px;     
  39.   }     
  40. </style>     
  41. </head>     
  42. <body>     
  43. <!--<a>標(biāo)簽按鈕-->     
  44. <a href="" class="btn">a標(biāo)簽按鈕</a>     
  45. <!--<input>標(biāo)簽按鈕-->     
  46. <input class="inbtn btn" type="button" value="input標(biāo)簽按鈕"/>     
  47. <!--<button>標(biāo)簽按鈕-->     
  48. <button class="bubtn btn">button標(biāo)簽按鈕</button>     
  49. <!--任意標(biāo)簽按鈕-->     
  50. <i class="ibtn btn">i標(biāo)簽按鈕</i>     
  51. <!--帶背景圖標(biāo)按鈕-->     
  52. <a href="" class="bgbtn btn">     
  53.   <span>帶圖標(biāo)按鈕</span>     
  54. </a>     
  55. <a href="" class="bgbtn02 btn">     
  56.   <img src="images/edit.png"/>帶圖標(biāo)按鈕     
  57. </a>     
  58. </body>     
  59. </html>     
至于各種標(biāo)簽的優(yōu)缺點(diǎn),還是需要大家去體會啦,如果大家有什么好玩的按鈕要寫,我們一起實(shí)現(xiàn)哦。

標(biāo)簽:揭陽 銅陵 那曲 沈陽 福建 阿拉善盟 湖南 健身房

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕》,本文關(guān)鍵詞  Html+css,實(shí)現(xiàn),純,文字,和,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕》相關(guān)的同類信息!
  • 本頁收集關(guān)于Html+css實(shí)現(xiàn)純文字和帶圖標(biāo)的按鈕的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章