首頁 > web前端 > css教學 > 如何自訂 Twitter Bootstrap 檔案上傳按鈕的外觀?

如何自訂 Twitter Bootstrap 檔案上傳按鈕的外觀?

Linda Hamilton
發布: 2024-11-26 09:25:12
原創
831 人瀏覽過

How Can I Customize the Twitter Bootstrap File Upload Button Appearance?

自訂 Twitter Bootstrap 檔案上傳按鈕

儘管 Twitter Bootstrap 中的檔案上傳按鈕沒有專用樣式,但有多種方法可以增強其外觀。

一個適用於Bootstrap 版本3、4 和5 的解決方案,利用HTML5 隱藏屬性來建立函數類似於按鈕的檔案輸入控制項:

<label class="btn btn-default">
  Browse <input type="file" hidden>
</label>
登入後複製

此方法依賴於隱藏屬性,Bootstrap 4 使用CSS 模擬該屬性以實現相容性。對於 Bootstrap 3,可能需要額外的 CSS:

[hidden] {
  display: none !important;
}
登入後複製

舊版 IE 的舊方法:

IE8 及以下版本需要不同的HTML/CSS架構:

<span class="btn btn-default btn-file">
  Browse <input type="file">
</span>
登入後複製
.btn-file {
  /* ... */
}

.btn-file input[type=file] {
  /* ... */
}
登入後複製

註解:

  • 舊版 IE 不允許點擊標籤時觸發檔案輸入。
  • CSS 透過擴充檔案來補償輸入以匹配跨度,然後隱藏它。

更多詳細資訊和範例,請參閱Abeautifulsite 的部落格文章:https://www.abeautifulsite.net/posts/whipping-file-inputs-into-shape-with-bootstrap-3 /

以上是如何自訂 Twitter Bootstrap 檔案上傳按鈕的外觀?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板