要隱藏標誌文字並顯示背景圖片,您可以使用此 CSS 技術。該方法使用text-indent將文字移出可見區域並使用其他屬性使其保持隱藏而不影響佈局。
a.logo { text-indent: -9999px; /* Shifts the text far off-screen */ overflow: hidden; /* Ensures no overflow text is visible */ white-space: nowrap; /* Prevents text from wrapping to the next line */ display: block; /* Allows setting width and height */ width: 150px; /* Sets the width of the logo element */ height: 50px; /* Sets the height of the logo element */ background-image: url('logo.png'); /* URL of the logo image */ background-size: cover; /* Ensures the background image covers the entire area */ }
完整文章:如何使用 CSS 隱藏標誌中的文字
CSS 片段
以上是如何使用 CSS 隱藏標誌中的文本的詳細內容。更多資訊請關注PHP中文網其他相關文章!