要設定左側工具提示,請使用right CSS屬性。
您可以嘗試執行以下程式碼來將左側工具提示設定為文字:
#即時示範
<!DOCTYPE html> <html> <style> .mytooltip .mytext { visibility: hidden; width: 140px; background-color: orange; color: white; z-index: 1; top: -6px; right: 100%; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; } .mytooltip { position: relative; display: inline-block; margin-left: 150px; } .mytooltip:hover .mytext { visibility: visible; } </style> <body> <div class = "mytooltip">Keep mouse cursor over me <span class = "mytext"> My Tooltip text</span> </div> </body> </html>
以上是使用 CSS 設定左側工具提示的詳細內容。更多資訊請關注PHP中文網其他相關文章!