Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save takahirohonda/13e258e1996a1b786e9ceae3be0ec3bd to your computer and use it in GitHub Desktop.
Save takahirohonda/13e258e1996a1b786e9ceae3be0ec3bd to your computer and use it in GitHub Desktop.
svg-sizing-not-working-for-iphone-2.html
<!-- add class name and css -->
<img
src="img/logo.svg"
alt="My Logo"
class="my-logo-svg">
<style>
.my-logo-svg {
width: 250px;
height: 94px;
}
</style>
<!-- inline css will work, too -->
<img
src="img/logo.svg"
alt="My Logo"
style="width:250px;height:94px">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment