Horje
html align svg to text Code Example
html align svg to text
/* html-part: Pay attention to the correct name */
<div class="icon baseline">
    <svg width="48" height="48" viewBox="0 0 48 48">
       <path .../>
  	</svg>
</div>

/* css-part */
.svg-icon {
  display: inline-flex;
  align-self: center;
}

.svg-icon svg {
  height:1em;
  width:1em;
}

.svg-icon.svg-baseline svg {
  top: .125em;
  position: relative;
}




Css

Related
what does em stand for in css Code Example what does em stand for in css Code Example
word break css Code Example word break css Code Example
postcss plugin Code Example postcss plugin Code Example
erase elements css Code Example erase elements css Code Example
how to add font otf format in html Code Example how to add font otf format in html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10