Untuk menyembunyikan teks logo dan menunjukkan imej latar belakang, anda boleh menggunakan teknik CSS ini. Kaedah ini menggunakan inden teks untuk mengalihkan teks keluar dari kawasan yang boleh dilihat dan sifat lain untuk memastikan ia tersembunyi tanpa menjejaskan reka letak.
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 */ }
Artikel penuh: Cara Menyembunyikan Teks dalam Logo Menggunakan CSS
Coretan CSS
Atas ialah kandungan terperinci Cara Menyembunyikan Teks dalam Logo Menggunakan CSS. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!