1. 程式人生 > >登錄框記住密碼出現黃框

登錄框記住密碼出現黃框

complete com cti eth nbsp important -s size 功能

1.可以在不需要默認填寫的input框中設置 autocomplete="new-password" 2.
  • input文本框是純色背景的
  • input:-webkit-autofill {
  • -webkit-box-shadow: 0 0 0px 1000px white inset;
  • border: 1px solid #CCC!important;
  • }
3: 關閉瀏覽器自帶填充表單功能
  • 設置表單屬性 autocomplete="off/on" 關閉自動填充表單,自己實現記住密碼
  • <!-- 對整個表單設置 -->
  • <form autocomplete="off" method=".." action="..">
  • <!-- 或對單一元素設置 -->
  • <input type="text" name="textboxname" autocomplete="off">

登錄框記住密碼出現黃框