Created
January 31, 2020 07:24
-
-
Save takahirohonda/13e258e1996a1b786e9ceae3be0ec3bd to your computer and use it in GitHub Desktop.
svg-sizing-not-working-for-iphone-2.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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