我有一个自定义按钮实现为锚。该按钮具有图像和文本。
当按钮有焦点时,我想以不同的方式设置它。具体来说,我想在图像和文本周围画一个虚线矩形。我还想根据另一个类另外设置它的样式。
这是按钮代码:
<a id="searchButton" class="button" href="#">
<span class="icon-search"></span>
Search
</a>
这是我的问题的CSS代码:
button:focus {
/*How do I make a rectangular dotted line around the button text and icon? /*
/* How do I refer to another class that has additional stylings? */
}