在特定类的主体中选择某个类的链接的正确方法是什么。例如,我的身体有“abc”类,我的链接有“efg”类,我的css代码是什么样的? (我正在尝试为Magento块创建活动链接)
答案 0 :(得分:1)
body.body_class a.link_class
这个问题有点基础 - 你应该尝试学习一下这个东西。
答案 1 :(得分:0)
答案 2 :(得分:0)
答案 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文件中并打开它。