Rumah > Soal Jawab > teks badan
Saya mahu mencipta berbilang kelas untuk gaya hiperpautan.
Saya mahukan kelas lalai dan kelas khas untuk menu navigasi.
Ini kod CSS saya:
a { color: white; text-decoration: none; } .menu-items a { color: black; text-decoration: none; }
Saya cuba memanggil kelas "item menu" dalam html, tetapi ia terus menggunakan gaya lalai{} yang ditunjukkan di atas.
Ini ialah kod html:
<div class="container-outside"> <div class="container-inside"> <ul class="ul-list"> <li> <a class="menu-items" href="temperature.html">Temperature</a></li> <li>|</li> <li>Weight</li> <li>|</li> <li>Currency</li> </ul> </div> </div>
Saya cuba mengalih keluar kelas lalai dan mencipta dua kelas khas tanpa berjaya. Agak terharu di sini.
P粉0069779562024-04-05 10:31:31
Boleh terus letak nama kelas.menu-item
CSS a { color: white; text-decoration: none; } .menu-items { color: black; text-decoration: none; }
- Temperature
- |
- Weight
- |
- Currency
P粉5634465792024-04-05 00:58:02
Pemilih anda tidak betul kerana ibu bapa menu-items
不是 a
. Anda harus memilih tag seperti ini:
a.menu-items { color: black; text-decoration: none;}