如何刪除 HTML 按鈕上的灰色'邊框”
P粉986028039
P粉986028039 2024-03-30 10:30:48
0
1
506

我在 HTML 網頁上看到按鈕周圍有邊框。我正在嘗試將一個按鈕設為藍色和一個綠色,並將它們放在桌子上。程式碼如下:

<table align="center">
  <tr style=" font-family: verdana; font-size: 24px;">
    <th> Select your Region </th>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
    <td align="center">
      <button>
            <a id="cust" type="button" 
            style=
            "background-color: #00824A;
              border: none;
              color: white;
              padding: 16px 55px;
              text-align: center;
              text-decoration: none;
              display: inline-block;
              font-size: 16px;
              margin: 4px 2px;
              transition-duration: 0.4s;
              cursor: pointer;
              font-weight: bold;
              font-family: verdana"
            href="URL">
            US
            </a>
            </button>
    </td>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
  </tr>
  <tr>
    <td align="center">
      <button>
            <a id="cust" type="button" 
            style=
            "background-color: #0061D5;
              border: none;
              color: white;
              padding: 16px 55px;
              text-align: center;
              text-decoration: none;
              display: inline-block;
              font-size: 16px;
              margin: 4px 2px;
              transition-duration: 0.4s;
              cursor: pointer;
              font-weight: bold;
              font-family: verdana" 
            href="URL">
            EU
            </a>
            </button>
    </td>
  </tr>
</table>

這是它們在網頁上的顯示方式:

我希望整個按鈕都是那種顏色,周圍沒有灰色。我刪除了樣式中帶有 border: none 的「邊框」。相反,它在較大的灰色按鈕內顯示一個顏色矩形。

P粉986028039
P粉986028039

全部回覆(1)
P粉605233764

邊框是 button 元素本身,而不是其中的連結 。您需要使用

設定按鈕樣式並刪除預設邊框

相關閱讀:https://css-tricks.com/overriding-default -按鈕樣式/


Select your Region
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板