您可能曾經遇到 contenteditable 屬性。它被用在很多地方。它是文本區域之類的更好的替代品。您可以將 contenteditable="true" 新增到任何 div,然後它就像輸入欄位。在本文中,我將向您展示如何在文字上新增佔位符,因為它不支援開箱即用的佔位符屬性。
div[contenteditable] { &[placeholder]:empty::before { content: attr(placeholder); z-index: 9; line-height: 1.7; color: #555; word-break: break-all; user-select: none; } &[placeholder]:empty:focus::before { content: ""; } }
這就是您需要的所有程式碼!但是,如果您只將其添加到 CSS 中,那麼它將不起作用。您需要在 HTML 中新增佔位符屬性,並確保 div 可見。
HTML
CSS
div[contenteditable] { /* Basic styles */ width: 20rem; height: 15rem; padding: 1rem; background: #292929; color: #fff; /* Placeholder code */ &[placeholder]:empty::before { content: attr(placeholder); z-index: 9; line-height: 1.7; color: #555; word-break: break-all; user-select: none; } &[placeholder]:empty:focus::before { content: ""; } }
這裡的所有都是它的。希望你覺得它有用!
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3