I am working on a webpage that includes
'<a> <i> <label>'
elements with specific classes.
<a class="icon-home"></a>
<label class="icon-pencil"></label>
<i class="icon-display"></i>
I want to apply CSS styling with margin-right:10px
to any element whose class starts with "icon-"
.
Here is an example of what I'm looking for:
<style>
.icon-* {margin-right:10px}
</style>