在某个类的正文中选择某个类的链接

时间:2012-08-07 06:08:39

标签: html css magento

在特定类的主体中选择某个类的链接的正确方法是什么。例如,我的身体有“abc”类,我的链接有“efg”类,我的css代码是什么样的? (我正在尝试为Magento块创建活动链接)

4 个答案:

答案 0 :(得分:1)

body.body_class a.link_class

这个问题有点基础 - 你应该尝试学习一下这个东西。

答案 1 :(得分:0)

你必须做一些研究

body.abc a.efg {
   rules
}

w3c可以帮助你

答案 2 :(得分:0)

你应该写这样的东西:

.abc .efg {

     /*Your CSS Rules*/
 }

SEE DEMO

答案 3 :(得分:0)

检查此示例

<html> 
<head>      
<style>
.outer
{
    background-color: red;
    height: 40px;
    margin: 10px;
}

.inner
{
    background-color: blue;
    height: 20px;
    margin: 5px;
}

.outer .inner
{
background-color: green;
}
</style>
</head>

<body  onload="loadCars()">

Check div style.
<div  id="mydiv" class="inner">
</div>

</div>
<div  id="mydiv" class="outer">
<div  id="mydiv" class="inner"></div>

</div>

</body>
</html>

将上述代码保存在html文件中并打开它。