如何風格迭代如何在迭代中動態設計元素?
動態元素在test.phtml頁
<?php foreach($tests => $test) { ?>
<li class="<?php echo $test['class'] ?>">
<a href="#" title="">
Test Instance
</a>
<style type="text/css">
li.<?php echo $test['class'] ?> a:hover {
color: <?php echo $test['color'] ?>;
background-color: <?php echo $test['bgColor'] ?>;
}
</style>
</li>
<?php } ?>
風格標籤頁來。
<li class="third-item">
<a href="#" title="">
Test Instance
</a>
<style type="text/css">
li.third-item a:hover {
color: #498995;
background-color: #dbe7ea;
}
</style>
</li>
但是,這些風格對網頁沒有任何影響。
請幫我解決這個問題...
如何使它成爲'a:hover'? –
仍然CSS不起作用? –
我有修改代碼plz檢查它 – Hkachhia