Having trouble vertical aligning my inline SVG within a label. Any suggestions?
This is how I've attempted it:
<label for="menu-check-box">More<svg class="more-icon"><use xlink:href="#more-chevron"></use></svg></label>
And the CSS looks like this:
label {
cursor: pointer;
color: blue;
}
.more-icon {
width: 24px;
height: 24px;
fill: blue;
}
Check out the Fiddle for more details.