我有以下 css 样式应用了我的 html 锚标记。
.my_button .left {
float: left;
width: 10px;
height: 19px;
background: url("./images/bl.png") left center no-repeat;
}
.my_button .right {
float: left;
width: 10px;
height: 19px;
background: url("./images/br.png") left center no-repeat;
}
在将鼠标悬停在锚标记上时,正在应用另一种 css 样式。下面的代码与上面的 CSS 样式 excpet 背景 url 几乎相似。是否可以避免重复的 CSS 代码?
.my_button_hover .left {
float: left;
width: 10px;
height: 19px;
background: url("./images/bl-active.png") left center no-repeat;
}
.my_button_hover .right {
float: left;
width: 10px;
height: 19px;
background: url("./images/br-active.png") left center no-repeat;
}
谢谢!