您可能曾經遇到 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
<div contenteditable="true" placeholder="Subscribe to Axorax on YT! :D"></div>
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: ""; } }
這就是全部了。希望您覺得它有用!
以上是使用 contenteditable=\'true\' 將佔位文字新增至 div的詳細內容。更多資訊請關注PHP中文網其他相關文章!